Kea 2.5.8
dhcp6_log.cc
Go to the documentation of this file.
1// Copyright (C) 2012-2018 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
9
10#include <config.h>
11
12#include <dhcp6/dhcp6_log.h>
13
14namespace isc {
15namespace dhcp {
16
25
26const char* DHCP6_ROOT_LOGGER_NAME = "kea-dhcp6";
27const char* DHCP6_APP_LOGGER_NAME = "dhcp6";
28const char* DHCP6_BAD_PACKET_LOGGER_NAME = "bad-packets";
29const char* DHCP6_PACKET_LOGGER_NAME = "packets";
30const char* DHCP6_OPTIONS_LOGGER_NAME = "options";
31const char* DHCP6_DDNS_LOGGER_NAME = "ddns";
32const char* DHCP6_LEASE_LOGGER_NAME = "leases";
33
40
41} // namespace dhcp
42} // namespace isc
43
Logger Class.
Definition: log/logger.h:142
isc::log::Logger bad_packet6_logger(DHCP6_BAD_PACKET_LOGGER_NAME)
Logger for rejected packets.
Definition: dhcp6_log.h:94
const int DBG_DHCP6_BASIC_DATA
Debug level used to log the traces with some basic data.
Definition: dhcp6_log.h:43
const int DBG_DHCP6_COMMAND
Debug level used to log receiving commands.
Definition: dhcp6_log.h:28
const int DBG_DHCP6_HOOKS
Debug level used to trace hook related operations.
Definition: dhcp6_log.h:34
const int DBG_DHCP6_START
Debug level used to log information during server startup.
Definition: dhcp6_log.h:22
const int DBG_DHCP6_SHUT
Debug level used to log information during server shutdown.
Definition: dhcp6_log.h:25
const char * DHCP6_PACKET_LOGGER_NAME
Name of the logger for processed packets.
Definition: dhcp6_log.cc:29
isc::log::Logger packet6_logger(DHCP6_PACKET_LOGGER_NAME)
Logger for processed packets.
Definition: dhcp6_log.h:100
const char * DHCP6_DDNS_LOGGER_NAME
Name of the logger for hostname or FQDN processing.
Definition: dhcp6_log.cc:31
const char * DHCP6_BAD_PACKET_LOGGER_NAME
Name of the logger for rejected packets.
Definition: dhcp6_log.cc:28
const char * DHCP6_LEASE_LOGGER_NAME
Name of the logger for lease allocation logic.
Definition: dhcp6_log.cc:32
isc::log::Logger ddns6_logger(DHCP6_DDNS_LOGGER_NAME)
Logger for Hostname or FQDN processing.
Definition: dhcp6_log.h:112
const int DBG_DHCP6_DETAIL_DATA
This level is used to log the contents of packets received and sent.
Definition: dhcp6_log.h:54
const char * DHCP6_APP_LOGGER_NAME
Name of the base logger for DHCPv6 server.
Definition: dhcp6_log.cc:27
isc::log::Logger lease6_logger(DHCP6_LEASE_LOGGER_NAME)
Logger for lease allocation logic.
Definition: dhcp6_log.h:117
const char * DHCP6_ROOT_LOGGER_NAME
Defines the name of the root level (default) logger.
Definition: dhcp6_log.cc:26
const int DBG_DHCP6_BASIC
Debug level used to trace basic operations within the code.
Definition: dhcp6_log.h:31
isc::log::Logger dhcp6_logger(DHCP6_APP_LOGGER_NAME)
Base logger for DHCPv6 server.
Definition: dhcp6_log.h:88
const char * DHCP6_OPTIONS_LOGGER_NAME
Name of the logger for options parser.
Definition: dhcp6_log.cc:30
isc::log::Logger options6_logger(DHCP6_OPTIONS_LOGGER_NAME)
Logger for options parser.
Definition: dhcp6_log.h:106
const int DBG_DHCP6_DETAIL
Debug level used to trace detailed errors.
Definition: dhcp6_log.h:51
const int DBGLVL_TRACE_BASIC
Trace basic operations.
Definition: log_dbglevels.h:69
const int DBGLVL_COMMAND
This debug level is reserved for logging the exchange of messages/commands between processes,...
Definition: log_dbglevels.h:54
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...
Definition: log_dbglevels.h:50
const int DBGLVL_TRACE_DETAIL_DATA
Trace data associated with detailed operations.
Definition: log_dbglevels.h:78
const int DBGLVL_TRACE_BASIC_DATA
Trace data associated with the basic operations.
Definition: log_dbglevels.h:72
const int DBGLVL_TRACE_DETAIL
Trace detailed operations.
Definition: log_dbglevels.h:75
Defines the logger used by the top-level component of kea-lfc.