From: JINMEI Tatuya Date: Wed, 29 Feb 2012 21:41:08 +0000 (-0800) Subject: [master] added changelog entry for #1697 X-Git-Tag: trac2351_base~226^2~116^2~138 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fa862e7d1208c8cd0526b9512b9a1979366252ba;p=thirdparty%2Fkea.git [master] added changelog entry for #1697 --- diff --git a/ChangeLog b/ChangeLog index 3f397bb41d..65782e54f4 100644 --- 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 diff --git a/src/bin/auth/main.cc b/src/bin/auth/main.cc index fc2f7512dc..0db770cb84 100644 --- a/src/bin/auth/main.cc +++ b/src/bin/auth/main.cc @@ -25,6 +25,8 @@ #include #include +#include + #include #include @@ -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(getpid()) + ")", (verbose ? isc::log::DEBUG : isc::log::INFO), isc::log::MAX_DEBUG_LEVEL, NULL);