Kea 2.7.5
log_dbglevels.cc
Go to the documentation of this file.
1// Copyright (C) 2017-2024 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#include <config.h>
8
9namespace isc {
10namespace log {
11
14extern const int DBGLVL_START_SHUT = 0;
15extern const int DBGLVL_COMMAND = 10;
16extern const int DBGLVL_PKT_HANDLING = 15;
17extern const int DBGLVL_COMMAND_DATA = 20;
18
19extern const int DBGLVL_TRACE_BASIC = 40;
20extern const int DBGLVL_TRACE_BASIC_DATA = 45;
21extern const int DBGLVL_TRACE_DETAIL = 50;
22extern const int DBGLVL_TRACE_DETAIL_DATA = 55;
23extern const int DBGLVL_TRACE_TECHNICAL = 70;
24extern const int DBGLVL_TRACE_TECHNICAL_DATA = 90;
25extern const int DBGLVL_TRACE_MAX = 99;
26
27} // namespace log
28} // namespace isc
const int DBGLVL_TRACE_BASIC
Trace basic operations.
const int DBGLVL_COMMAND
This debug level is reserved for logging the exchange of messages/commands between processes,...
const int DBGLVL_START_SHUT
This is given a value of 0 as that is the level selected if debugging is enabled without giving a lev...
const int DBGLVL_TRACE_TECHNICAL
Trace technical operations.
const int DBGLVL_TRACE_MAX
The highest level of debug logging.
const int DBGLVL_TRACE_TECHNICAL_DATA
Trace data associated with technical operations.
const int DBGLVL_TRACE_DETAIL_DATA
Trace data associated with detailed operations.
const int DBGLVL_PKT_HANDLING
This debug level is reserved for logging the details of packet handling, such as dropping the packet ...
const int DBGLVL_TRACE_BASIC_DATA
Trace data associated with the basic operations.
const int DBGLVL_COMMAND_DATA
If the commands have associated data, this level is when they are printed.
const int DBGLVL_TRACE_DETAIL
Trace detailed operations.
Defines the logger used by the top-level component of kea-lfc.