diff --git a/include/bitcoin/network/impl/channels/channel_rpc.ipp b/include/bitcoin/network/impl/channels/channel_rpc.ipp index 26018479f..4b6716a3d 100644 --- a/include/bitcoin/network/impl/channels/channel_rpc.ipp +++ b/include/bitcoin/network/impl/channels/channel_rpc.ipp @@ -95,8 +95,8 @@ inline void CLASS::handle_receive(const code& ec, size_t bytes, // Don't log common conditions. if (ec != error::end_of_stream && ec != error::operation_canceled) { - LOGF("Rpc read failure [" << endpoint() << "] " - << ec.message()); + // These are most likely to be json-rpc parse errors (remote). + LOGR("Rpc read failure [" << endpoint() << "] " << ec.message()); } stop(ec);