From: Mukund Sivaraman Date: Fri, 25 May 2012 04:04:27 +0000 (+0530) Subject: [1704] Update comment about using locking in the logger X-Git-Tag: trac2351_base~226^2~60^2^2~49 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b555fcb29378dcb0db476bf8f53804acae8fe77;p=thirdparty%2Fkea.git [1704] Update comment about using locking in the logger --- diff --git a/src/lib/log/logger_impl.cc b/src/lib/log/logger_impl.cc index 5381635b11..b9cd137a8e 100644 --- a/src/lib/log/logger_impl.cc +++ b/src/lib/log/logger_impl.cc @@ -116,8 +116,8 @@ LoggerImpl::lookupMessage(const MessageID& ident) { void LoggerImpl::outputRaw(const Severity& severity, const string& message) { - // Use a lock file for mutual exclusion from other processes to - // avoid log messages getting interspersed + // Use an interprocess sync locker for mutual exclusion from other + // processes to avoid log messages getting interspersed. InterprocessSyncLocker locker(*sync_);