summaryrefslogtreecommitdiffstats
path: root/src/lib/dhcpsrv/dhcpsrv_log.h
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2018-12-05 23:19:38 +0100
committerFrancis Dupont <fdupont@isc.org>2018-12-06 14:19:34 +0100
commit5658cd9e11b88e5f4784be72e0b192b9aa0aa2ba (patch)
tree33aa8f2dfc16877fdbe156486fc0ebcbb3d9afe3 /src/lib/dhcpsrv/dhcpsrv_log.h
parent[master] Added ChangeLog entry for #303. (diff)
downloadkea-5658cd9e11b88e5f4784be72e0b192b9aa0aa2ba.tar.xz
kea-5658cd9e11b88e5f4784be72e0b192b9aa0aa2ba.zip
[174-warning-for-unused-trace-levels] Made extern debug levels186-add-kea-netconf-daemon-to-keactrl_base
Diffstat (limited to 'src/lib/dhcpsrv/dhcpsrv_log.h')
-rw-r--r--src/lib/dhcpsrv/dhcpsrv_log.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/dhcpsrv/dhcpsrv_log.h b/src/lib/dhcpsrv/dhcpsrv_log.h
index b4c41b1cb2..95fa7015d0 100644
--- a/src/lib/dhcpsrv/dhcpsrv_log.h
+++ b/src/lib/dhcpsrv/dhcpsrv_log.h
@@ -1,4 +1,4 @@
-// Copyright (C) 2011-2015,2017 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2011-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
@@ -23,27 +23,27 @@ namespace dhcp {
/// @brief Traces normal operations
///
/// E.g. sending a query to the database etc.
-const int DHCPSRV_DBG_TRACE = isc::log::DBGLVL_TRACE_BASIC;
+extern const int DHCPSRV_DBG_TRACE;
/// @brief Records the results of the lookups
///
/// Using the example of tracing queries from the backend database, this will
/// just record the summary results.
-const int DHCPSRV_DBG_RESULTS = isc::log::DBGLVL_TRACE_BASIC_DATA;
+extern const int DHCPSRV_DBG_RESULTS;
/// @brief Additional information
///
/// Record detailed tracing. This is generally reserved for tracing access to
/// the lease database.
-const int DHCPSRV_DBG_TRACE_DETAIL = isc::log::DBGLVL_TRACE_DETAIL;
+extern const int DHCPSRV_DBG_TRACE_DETAIL;
/// @brief Additional information
///
/// Record detailed (and verbose) data on the server.
-const int DHCPSRV_DBG_TRACE_DETAIL_DATA = isc::log::DBGLVL_TRACE_DETAIL_DATA;
+extern const int DHCPSRV_DBG_TRACE_DETAIL_DATA;
// Trace hook related operations
-const int DHCPSRV_DBG_HOOKS = isc::log::DBGLVL_TRACE_BASIC;
+extern const int DHCPSRV_DBG_HOOKS;
///@}