aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event/process.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-07-27 00:30:57 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-08-21 01:04:28 +0200
commite006b1d98d92aead6aff565ed5d8b034772aa16c (patch)
treeaba1db19cb1f16aca53fc781bb5eb5a2ff33e1ce /src/nvim/event/process.c
parent8d1ccb606d3806dcf9c4bcfdb0446d8139c0e765 (diff)
downloadrneovim-e006b1d98d92aead6aff565ed5d8b034772aa16c.tar.gz
rneovim-e006b1d98d92aead6aff565ed5d8b034772aa16c.tar.bz2
rneovim-e006b1d98d92aead6aff565ed5d8b034772aa16c.zip
log: some DEBUG-level stream logging
Diffstat (limited to 'src/nvim/event/process.c')
-rw-r--r--src/nvim/event/process.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/event/process.c b/src/nvim/event/process.c
index c936583841..8371d3cd48 100644
--- a/src/nvim/event/process.c
+++ b/src/nvim/event/process.c
@@ -233,8 +233,7 @@ void process_stop(Process *proc) FUNC_ATTR_NONNULL_ALL
switch (proc->type) {
case kProcessTypeUv:
// Close the process's stdin. If the process doesn't close its own
- // stdout/stderr, they will be closed when it exits(possibly due to being
- // terminated after a timeout)
+ // stdout/stderr, they will be closed when it exits (voluntarily or not).
process_close_in(proc);
ILOG("Sending SIGTERM to pid %d", proc->pid);
uv_kill(proc->pid, SIGTERM);