aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2023-09-24 21:19:01 +0200
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-04-02 17:07:44 +0200
commitffe3002568f849df1b155b90d6ea0e1f48d8c6d5 (patch)
tree8b4732fcbc9b9902f04b1c2b990f2cc7b2ac20a4 /src/nvim/event
parent6cfca21bac6bb39b50cba1c23ffb2b69e2d94df8 (diff)
downloadrneovim-ffe3002568f849df1b155b90d6ea0e1f48d8c6d5.tar.gz
rneovim-ffe3002568f849df1b155b90d6ea0e1f48d8c6d5.tar.bz2
rneovim-ffe3002568f849df1b155b90d6ea0e1f48d8c6d5.zip
test: silence expected errors
This will remove unrelated errors in .nvimlog at the end of test output.
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 a7966994e0..608aeb4c15 100644
--- a/src/nvim/event/libuv_process.c
+++ b/src/nvim/event/libuv_process.c
@@ -90,7 +90,7 @@ int libuv_process_spawn(LibuvProcess *uvproc)
int status;
if ((status = uv_spawn(&proc->loop->uv, &uvproc->uv, &uvproc->uvopts))) {
- ELOG("uv_spawn(%s) failed: %s", uvproc->uvopts.file, uv_strerror(status));
+ DLOG("uv_spawn(%s) failed: %s", uvproc->uvopts.file, uv_strerror(status));
if (uvproc->uvopts.env) {
os_free_fullenv(uvproc->uvopts.env);
}