]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] added changelog entry for #1697
authorJINMEI Tatuya <jinmei@isc.org>
Wed, 29 Feb 2012 21:41:08 +0000 (13:41 -0800)
committerJINMEI Tatuya <jinmei@isc.org>
Wed, 29 Feb 2012 21:41:08 +0000 (13:41 -0800)
ChangeLog
src/bin/auth/main.cc

index 3f397bb41d9a6d5350459b488f28a27ae2ed7ef3..65782e54f4d06ff21ffaabdfcf8b9d64bb8c92dd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+391.   [func]*         jinmei
+       libdns++: revised the (Abstract)MessageRenderer class so that it
+       has a default internal buffer and the buffer can be temporarily
+       switched.  The constructor interface was modified, and a new
+       method setBuffer() was added.
+       (Trac #1697, git 9cabc799f2bf9a3579dae7f1f5d5467c8bb1aa40)
+
 bind10-devel-20120301 released on March 1, 2012
 
 390.   [bug]           vorner
index fc2f7512dc6b052c4122cc0ea27ac503b9b9e07f..0db770cb8415060dc2f32bab8aa5318e41a524a7 100644 (file)
@@ -25,6 +25,8 @@
 #include <cassert>
 #include <iostream>
 
+#include <boost/lexical_cast.hpp>
+
 #include <exceptions/exceptions.h>
 
 #include <util/buffer.h>
@@ -116,7 +118,8 @@ main(int argc, char* argv[]) {
     }
 
     // Initialize logging.  If verbose, we'll use maximum verbosity.
-    isc::log::initLogger(AUTH_NAME,
+    isc::log::initLogger(string(AUTH_NAME) + " (" +
+                         boost::lexical_cast<string>(getpid()) + ")",
                          (verbose ? isc::log::DEBUG : isc::log::INFO),
                          isc::log::MAX_DEBUG_LEVEL, NULL);