diff options
author | Stephen Morris <stephen@isc.org> | 2011-01-24 21:15:05 +0100 |
---|---|---|
committer | Stephen Morris <stephen@isc.org> | 2011-01-24 21:15:05 +0100 |
commit | 6b118748704d34fbea4d80cbed3a1094abd22e11 (patch) | |
tree | c57ce345ee9eb6c607ea58e32ee8e492c5a0e72d /src/lib/log/logger_support.cc | |
parent | add linker flag to liblog makefile (diff) | |
download | kea-6b118748704d34fbea4d80cbed3a1094abd22e11.tar.xz kea-6b118748704d34fbea4d80cbed3a1094abd22e11.zip |
Minor modifications to logging code made after review.
Diffstat (limited to 'src/lib/log/logger_support.cc')
-rw-r--r-- | src/lib/log/logger_support.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/log/logger_support.cc b/src/lib/log/logger_support.cc index cce1f3d45d..c9ba858054 100644 --- a/src/lib/log/logger_support.cc +++ b/src/lib/log/logger_support.cc @@ -55,7 +55,8 @@ Logger logger("log"); /// dictionary, they are listed in a warning message. /// /// \param file Name of the local message file -static void readLocalMessageFile(const char* file) { +static void +readLocalMessageFile(const char* file) { MessageDictionary* dictionary = MessageDictionary::globalDictionary(); MessageReader reader(dictionary); @@ -89,7 +90,8 @@ static void readLocalMessageFile(const char* file) { /// Logger Run-Time Initialization -void runTimeInit(Logger::Severity severity, int dbglevel, const char* file) { +void +runTimeInit(Logger::Severity severity, int dbglevel, const char* file) { // Create the application root logger. This is the logger that has the // name of the application (and is one level down from the log4cxx root |