From ffe3002568f849df1b155b90d6ea0e1f48d8c6d5 Mon Sep 17 00:00:00 2001 From: dundargoc Date: Sun, 24 Sep 2023 21:19:01 +0200 Subject: test: silence expected errors This will remove unrelated errors in .nvimlog at the end of test output. --- src/nvim/msgpack_rpc/channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/msgpack_rpc') 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); } } -- cgit