Kea  1.9.9-git
logger_manager_impl.h
Go to the documentation of this file.
1 // Copyright (C) 2011-2019 Internet Systems Consortium, Inc. ("ISC")
2 //
3 // This Source Code Form is subject to the terms of the Mozilla Public
4 // License, v. 2.0. If a copy of the MPL was not distributed with this
5 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 
7 #ifndef LOGGER_MANAGER_IMPL_H
8 #define LOGGER_MANAGER_IMPL_H
9 
10 #include <string>
11 
12 #include <log4cplus/appender.h>
13 #include <log/logger_level.h>
14 
15 // Forward declaration to avoid need to include log4cplus header file here.
16 namespace log4cplus {
17 class Logger;
18 class Appender;
19 }
20 
21 namespace isc {
22 namespace log {
23 
24 // Forward declarations
25 class LoggerSpecification;
26 struct OutputOption;
27 
41 
43 public:
44 
47 
53  void processInit();
54 
60  static void processSpecification(const LoggerSpecification& spec);
61 
65  void processEnd();
66 
83  static void init(isc::log::Severity severity = isc::log::INFO,
84  int dbglevel = 0, bool buffer = false);
85 
93  static void reset(isc::log::Severity severity = isc::log::INFO,
94  int dbglevel = 0);
95 
96 private:
104  static void createConsoleAppender(log4cplus::Logger& logger,
105  const OutputOption& opt);
106 
115  static void createFileAppender(log4cplus::Logger& logger,
116  const OutputOption& opt);
117 
125  static void createSyslogAppender(log4cplus::Logger& logger,
126  const OutputOption& opt);
127 
135  static void createBufferAppender(log4cplus::Logger& logger);
136 
147  static void initRootLogger(isc::log::Severity severity = isc::log::INFO,
148  int dbglevel = 0, bool buffer = false);
149 
157  static void setAppenderLayout(log4cplus::SharedAppenderPtr& appender,
158  std::string pattern);
159 
166  void storeBufferAppenders();
167 
172  void flushBufferAppenders();
173 
177  std::vector<log4cplus::SharedAppenderPtr> buffer_appender_store_;
178 };
179 
180 } // namespace log
181 } // namespace isc
182 
183 #endif // LOGGER_MANAGER_IMPL_H
void processEnd()
End Processing.
void processInit()
Initialize Processing.
static void reset(isc::log::Severity severity=isc::log::INFO, int dbglevel=0)
Reset logging.
Logger Manager Implementation.
Severity
Severity Levels.
Definition: logger_level.h:23
static void processSpecification(const LoggerSpecification &spec)
Process Specification.
Defines the logger used by the top-level component of kea-dhcp-ddns.
isc::log::Logger logger("asiodns")
Use the ASIO logger.
static void init(isc::log::Severity severity=isc::log::INFO, int dbglevel=0, bool buffer=false)
Implementation-specific initialization.