Browse Source

[master] canceled an experimental change that was accidentally committed.

JINMEI Tatuya 13 years ago
parent
commit
2730ac6f20
1 changed files with 1 additions and 4 deletions
  1. 1 4
      src/bin/auth/main.cc

+ 1 - 4
src/bin/auth/main.cc

@@ -25,8 +25,6 @@
 #include <cassert>
 #include <iostream>
 
-#include <boost/lexical_cast.hpp>
-
 #include <exceptions/exceptions.h>
 
 #include <util/buffer.h>
@@ -118,8 +116,7 @@ main(int argc, char* argv[]) {
     }
 
     // Initialize logging.  If verbose, we'll use maximum verbosity.
-    isc::log::initLogger(string(AUTH_NAME) + " (" +
-                         boost::lexical_cast<string>(getpid()) + ")",
+    isc::log::initLogger(AUTH_NAME,
                          (verbose ? isc::log::DEBUG : isc::log::INFO),
                          isc::log::MAX_DEBUG_LEVEL, NULL);