diff options
| author | dundargoc <gocdundar@gmail.com> | 2023-09-24 21:19:01 +0200 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-04-02 17:07:44 +0200 |
| commit | ffe3002568f849df1b155b90d6ea0e1f48d8c6d5 (patch) | |
| tree | 8b4732fcbc9b9902f04b1c2b990f2cc7b2ac20a4 /src/nvim/msgpack_rpc | |
| parent | 6cfca21bac6bb39b50cba1c23ffb2b69e2d94df8 (diff) | |
| download | rneovim-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/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 a8fde5a652..6921deae7e 100644 --- a/src/nvim/msgpack_rpc/channel.c +++ b/src/nvim/msgpack_rpc/channel.c @@ -339,7 +339,7 @@ static void parse_msgpack(Channel *channel) } if (unpacker_closed(p)) { - chan_close_with_error(channel, p->unpack_error.msg, LOGLVL_ERR); + chan_close_with_error(channel, p->unpack_error.msg, LOGLVL_INF); api_clear_error(&p->unpack_error); } } |