diff options
author | James McCoy <jamessan@jamessan.com> | 2021-04-09 09:48:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 09:48:35 -0400 |
commit | e3d0fb0d3cdc09a716e925627ca0da47224e1390 (patch) | |
tree | e97e81b57b57d9a845f897333e61d1c440bfe9eb /src/nvim/msgpack_rpc | |
parent | 8a1a256b44f7fe9f0d878d4d28d7f41f8157c4ea (diff) | |
parent | 6a03bcc3c2f65f376b14d2dbef6ade8fc483bf26 (diff) | |
download | rneovim-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/msgpack_rpc')
-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; } |