diff options
author | James McCoy <jamessan@jamessan.com> | 2021-03-27 13:54:37 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-04-08 07:44:51 -0400 |
commit | 8caf8413080425f8ce53c5bacd232ed66a09fe55 (patch) | |
tree | 4fb758fa0eb523246a43b289dba2af154e7b00aa | |
parent | 48e80572855042ceb1d9191bc11f8b60275426eb (diff) | |
download | rneovim-8caf8413080425f8ce53c5bacd232ed66a09fe55.tar.gz rneovim-8caf8413080425f8ce53c5bacd232ed66a09fe55.tar.bz2 rneovim-8caf8413080425f8ce53c5bacd232ed66a09fe55.zip |
Lower "closed by the client" message level to INFO
[skip ci]
-rw-r--r-- | src/nvim/msgpack_rpc/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/msgpack_rpc/channel.c b/src/nvim/msgpack_rpc/channel.c index a0b439ac45..a2d8859c68 100644 --- a/src/nvim/msgpack_rpc/channel.c +++ b/src/nvim/msgpack_rpc/channel.c @@ -219,7 +219,7 @@ static void receive_msgpack(Stream *stream, RBuffer *rbuf, size_t c, char buf[256]; snprintf(buf, sizeof(buf), "ch %" PRIu64 " was closed by the client", channel->id); - call_set_error(channel, buf, WARN_LOG_LEVEL); + call_set_error(channel, buf, INFO_LOG_LEVEL); goto end; } |