From d1b801a597ddcaaa2bf03611ec88037a45f40355 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 11 Jun 2010 14:37:33 -0700 Subject: [PATCH] jsonrpc: Suppress duplicate logging. Both jsonrpc and reconnect were logging ordinary connection closure. There's no need for both to do it. --- lib/jsonrpc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/jsonrpc.c b/lib/jsonrpc.c index 13ec4257..d06cdcd1 100644 --- a/lib/jsonrpc.c +++ b/lib/jsonrpc.c @@ -249,7 +249,6 @@ jsonrpc_recv(struct jsonrpc *rpc, struct jsonrpc_msg **msgp) return rpc->status; } } else if (retval == 0) { - VLOG_INFO_RL(&rl, "%s: connection closed", rpc->name); jsonrpc_error(rpc, EOF); return EOF; } -- 2.30.2