From: Ben Pfaff Date: Mon, 13 Oct 2008 20:51:50 +0000 (-0700) Subject: rconn: Improve log message when peer closes connection. X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=0b99d8d4be610ae3b17e96ef115dacbf1bca0b84;p=sliver-openvswitch.git rconn: Improve log message when peer closes connection. --- diff --git a/lib/rconn.c b/lib/rconn.c index 7db14e218..3865fc907 100644 --- a/lib/rconn.c +++ b/lib/rconn.c @@ -727,7 +727,7 @@ disconnect(struct rconn *rc, int error) rc->name, strerror(error)); } else if (error == EOF) { if (rc->reliable) { - VLOG_WARN("%s: connection closed", rc->name); + VLOG_WARN("%s: connection closed by peer", rc->name); } } else { VLOG_WARN("%s: connection dropped", rc->name);