From 8f8c798c136bc9983a4825bad12078ae969b3de4 Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Fri, 27 Aug 2010 14:12:53 +0000 Subject: [PATCH] - Remove redundant and incorrect 'old' word from debug message. - Log disconnects as warnings. MFC after: 2 weeks Obtained from: Wheel Systems Sp. z o.o. http://www.wheelsystems.com --- sbin/hastd/primary.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sbin/hastd/primary.c b/sbin/hastd/primary.c index 8f96804406bf..52ac594ba6d5 100644 --- a/sbin/hastd/primary.c +++ b/sbin/hastd/primary.c @@ -867,17 +867,19 @@ remote_close(struct hast_resource *res, int ncomp) assert(res->hr_remotein != NULL); assert(res->hr_remoteout != NULL); - pjdlog_debug(2, "Closing old incoming connection to %s.", + pjdlog_debug(2, "Closing incoming connection to %s.", res->hr_remoteaddr); proto_close(res->hr_remotein); res->hr_remotein = NULL; - pjdlog_debug(2, "Closing old outgoing connection to %s.", + pjdlog_debug(2, "Closing outgoing connection to %s.", res->hr_remoteaddr); proto_close(res->hr_remoteout); res->hr_remoteout = NULL; rw_unlock(&hio_remote_lock[ncomp]); + pjdlog_warning("Disconnected from %s.", res->hr_remoteaddr); + /* * Stop synchronization if in-progress. */