aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2021-04-09 09:48:35 -0400
committerGitHub <noreply@github.com>2021-04-09 09:48:35 -0400
commite3d0fb0d3cdc09a716e925627ca0da47224e1390 (patch)
treee97e81b57b57d9a845f897333e61d1c440bfe9eb /src/nvim/event
parent8a1a256b44f7fe9f0d878d4d28d7f41f8157c4ea (diff)
parent6a03bcc3c2f65f376b14d2dbef6ade8fc483bf26 (diff)
downloadrneovim-e3d0fb0d3cdc09a716e925627ca0da47224e1390.tar.gz
rneovim-e3d0fb0d3cdc09a716e925627ca0da47224e1390.tar.bz2
rneovim-e3d0fb0d3cdc09a716e925627ca0da47224e1390.zip
Merge pull request #14321 from jamessan/ci-fixes
Some small cleanups/diagnostic improvements
Diffstat (limited to 'src/nvim/event')
-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);
}