summaryrefslogtreecommitdiffstats
path: root/src/bin/netconf/netconf_log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/netconf/netconf_log.h')
-rw-r--r--src/bin/netconf/netconf_log.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/bin/netconf/netconf_log.h b/src/bin/netconf/netconf_log.h
new file mode 100644
index 0000000..72a51d0
--- /dev/null
+++ b/src/bin/netconf/netconf_log.h
@@ -0,0 +1,54 @@
+// Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC")
+//
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+/// @file netconf_log.h
+/// Contains declarations for loggers used by the Kea netconf agent.
+
+#ifndef NETCONF_LOG_H
+#define NETCONF_LOG_H
+
+#include <log/logger_support.h>
+#include <log/macros.h>
+#include <netconf/netconf_messages.h>
+
+namespace isc {
+namespace netconf {
+
+///@{
+/// \brief Netconf agent logging levels.
+///
+/// Defines the levels used to output debug messages in the Netconf agent.
+/// Note that higher numbers equate to more verbose (and detailed) output.
+
+/// @brief Traces normal operations.
+///
+/// E.g. sending a command to a server etc.
+extern const int NETCONF_DBG_TRACE;
+
+/// @brief Records the results of the commands.
+///
+/// Using the example of tracing commands to a server, this will just record
+/// the summary results.
+extern const int NETCONF_DBG_RESULTS;
+
+/// @brief Additional information.
+///
+/// Record detailed tracing. This is generally reserved for tracing
+/// configurations from or to a server.
+extern const int NETCONF_DBG_TRACE_DETAIL_DATA;
+
+///@}
+
+/// @brief Defines the name of the root level (default) logger.
+extern const char* NETCONF_LOGGER_NAME;
+
+/// @brief Base logger for the netconf agent
+extern isc::log::Logger netconf_logger;
+
+} // namespace netconf
+} // namespace isc
+
+#endif // NETCONF_LOG_H