diff options
author | Francis Dupont <fdupont@isc.org> | 2017-03-17 01:07:24 +0100 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2017-03-17 01:07:24 +0100 |
commit | 56fdf498387f3aca85ea285ee9540c3bca4ef5d6 (patch) | |
tree | 9b556241620da1c3054947b459e80650fb49f2d5 /src/bin/dhcp4/dhcp4_log.h | |
parent | [master] Merged trac5062 (time skew in requestPrefixInRenew) (diff) | |
download | kea-56fdf498387f3aca85ea285ee9540c3bca4ef5d6.tar.xz kea-56fdf498387f3aca85ea285ee9540c3bca4ef5d6.zip |
[2358a] Rebased and completed
Diffstat (limited to 'src/bin/dhcp4/dhcp4_log.h')
-rw-r--r-- | src/bin/dhcp4/dhcp4_log.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/bin/dhcp4/dhcp4_log.h b/src/bin/dhcp4/dhcp4_log.h index 161537b5d3..34a790cb39 100644 --- a/src/bin/dhcp4/dhcp4_log.h +++ b/src/bin/dhcp4/dhcp4_log.h @@ -1,4 +1,4 @@ -// Copyright (C) 2012-2015 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2012-2015,2017 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 @@ -21,19 +21,19 @@ namespace dhcp { //@{ /// @brief Debug level used to log information during server startup. -const int DBG_DHCP4_START = DBGLVL_START_SHUT; +const int DBG_DHCP4_START = isc::log::DBGLVL_START_SHUT; /// @brief Debug level used to log information during server shutdown. -const int DBG_DHCP4_SHUT = DBGLVL_START_SHUT; +const int DBG_DHCP4_SHUT = isc::log::DBGLVL_START_SHUT; /// @brief Debug level used to log receiving commands. -const int DBG_DHCP4_COMMAND = DBGLVL_COMMAND; +const int DBG_DHCP4_COMMAND = isc::log::DBGLVL_COMMAND; /// @brief Debug level used to trace basic operations within the code. -const int DBG_DHCP4_BASIC = DBGLVL_TRACE_BASIC; +const int DBG_DHCP4_BASIC = isc::log::DBGLVL_TRACE_BASIC; /// @brief Debug level used to trace hook related operations -const int DBG_DHCP4_HOOKS = DBGLVL_TRACE_BASIC; +const int DBG_DHCP4_HOOKS = isc::log::DBGLVL_TRACE_BASIC; /// @brief Debug level used to log the traces with some basic data. /// @@ -42,7 +42,7 @@ const int DBG_DHCP4_HOOKS = DBGLVL_TRACE_BASIC; /// more detailed information in cases when it is warranted and the /// extraction of the data doesn't impact the server's performance /// significantly. -const int DBG_DHCP4_BASIC_DATA = DBGLVL_TRACE_BASIC_DATA; +const int DBG_DHCP4_BASIC_DATA = isc::log::DBGLVL_TRACE_BASIC_DATA; /// @brief Debug level used to trace detailed errors. /// @@ -50,10 +50,10 @@ const int DBG_DHCP4_BASIC_DATA = DBGLVL_TRACE_BASIC_DATA; /// packets. (These are not logged at severities of WARN or higher for fear /// that a set of deliberately invalid packets set to the server could overwhelm /// the logging.) -const int DBG_DHCP4_DETAIL = DBGLVL_TRACE_DETAIL; +const int DBG_DHCP4_DETAIL = isc::log::DBGLVL_TRACE_DETAIL; /// @brief This level is used to log the contents of packets received and sent. -const int DBG_DHCP4_DETAIL_DATA = DBGLVL_TRACE_DETAIL_DATA; +const int DBG_DHCP4_DETAIL_DATA = isc::log::DBGLVL_TRACE_DETAIL_DATA; //@} |