]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1704] Update comment about using locking in the logger
authorMukund Sivaraman <muks@isc.org>
Fri, 25 May 2012 04:04:27 +0000 (09:34 +0530)
committerMukund Sivaraman <muks@isc.org>
Fri, 25 May 2012 04:04:27 +0000 (09:34 +0530)
src/lib/log/logger_impl.cc

index 5381635b1165acac4490e476e577c280c6516e52..b9cd137a8e7873740615aa2a993202d8416b495c 100644 (file)
@@ -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_);