aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event/libuv_process.c
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-03-28 12:59:03 -0400
committerJames McCoy <jamessan@jamessan.com>2021-04-08 08:13:39 -0400
commitce9b5848f9b5cec55997844ec54e8d4179391452 (patch)
treea1f81d365d5592cd065febdc31d6b996406ea126 /src/nvim/event/libuv_process.c
parent8caf8413080425f8ce53c5bacd232ed66a09fe55 (diff)
downloadrneovim-ce9b5848f9b5cec55997844ec54e8d4179391452.tar.gz
rneovim-ce9b5848f9b5cec55997844ec54e8d4179391452.tar.bz2
rneovim-ce9b5848f9b5cec55997844ec54e8d4179391452.zip
Add more info to debug messages
[skip ci]
Diffstat (limited to 'src/nvim/event/libuv_process.c')
-rw-r--r--src/nvim/event/libuv_process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/event/libuv_process.c b/src/nvim/event/libuv_process.c
index 0b1ecb12e2..c02f730431 100644
--- a/src/nvim/event/libuv_process.c
+++ b/src/nvim/event/libuv_process.c
@@ -82,7 +82,7 @@ int libuv_process_spawn(LibuvProcess *uvproc)
int status;
if ((status = uv_spawn(&proc->loop->uv, &uvproc->uv, &uvproc->uvopts))) {
- ELOG("uv_spawn failed: %s", uv_strerror(status));
+ ELOG("uv_spawn(%s) failed: %s", uvproc->uvopts.file, uv_strerror(status));
if (uvproc->uvopts.env) {
os_free_fullenv(uvproc->uvopts.env);
}