diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-07-27 00:30:57 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-08-21 01:04:28 +0200 |
commit | e006b1d98d92aead6aff565ed5d8b034772aa16c (patch) | |
tree | aba1db19cb1f16aca53fc781bb5eb5a2ff33e1ce /src/nvim/event/rstream.c | |
parent | 8d1ccb606d3806dcf9c4bcfdb0446d8139c0e765 (diff) | |
download | rneovim-e006b1d98d92aead6aff565ed5d8b034772aa16c.tar.gz rneovim-e006b1d98d92aead6aff565ed5d8b034772aa16c.tar.bz2 rneovim-e006b1d98d92aead6aff565ed5d8b034772aa16c.zip |
log: some DEBUG-level stream logging
Diffstat (limited to 'src/nvim/event/rstream.c')
-rw-r--r-- | src/nvim/event/rstream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/event/rstream.c b/src/nvim/event/rstream.c index 854af474b2..2c4db08b30 100644 --- a/src/nvim/event/rstream.c +++ b/src/nvim/event/rstream.c @@ -118,7 +118,7 @@ static void read_cb(uv_stream_t *uvstream, ssize_t cnt, const uv_buf_t *buf) // to `alloc_cb` will return the same unused pointer(`rbuffer_produced` // won't be called) && cnt != 0) { - DLOG("Closing Stream (%p): %s (%s)", stream, + DLOG("closing Stream: %p: %s (%s)", stream, uv_err_name((int)cnt), os_strerror((int)cnt)); // Read error or EOF, either way stop the stream and invoke the callback // with eof == true |