blob: 69619f5850af8c52d38bafcb30b7337dd4342086 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// Copyright (C) 2018-2022 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
|