Date: Fri, 27 Aug 2010 14:12:53 +0000 (UTC) From: Pawel Jakub Dawidek <pjd@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r211881 - head/sbin/hastd Message-ID: <201008271412.o7RECrpo080374@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pjd Date: Fri Aug 27 14:12:53 2010 New Revision: 211881 URL: http://svn.freebsd.org/changeset/base/211881 Log: - 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 Modified: head/sbin/hastd/primary.c Modified: head/sbin/hastd/primary.c ============================================================================== --- head/sbin/hastd/primary.c Fri Aug 27 14:10:25 2010 (r211880) +++ head/sbin/hastd/primary.c Fri Aug 27 14:12:53 2010 (r211881) @@ -867,17 +867,19 @@ remote_close(struct hast_resource *res, 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. */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008271412.o7RECrpo080374>