1 // Copyright (C) 2015-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 
7 /// @brief Defines the logger used by the @c isc::dhcp::AllocEngine
8 
9 #include <config.h>
10 
11 #include "dhcpsrv/alloc_engine_log.h"
12 
13 namespace isc {
14 namespace dhcp {
15 
16 extern const int ALLOC_ENGINE_DBG_TRACE = isc::log::DBGLVL_TRACE_BASIC;
17 extern const int ALLOC_ENGINE_DBG_RESULTS = isc::log::DBGLVL_TRACE_BASIC_DATA;
18 extern const int ALLOC_ENGINE_DBG_TRACE_DETAIL = isc::log::DBGLVL_TRACE_DETAIL;
19 extern const int ALLOC_ENGINE_DBG_TRACE_DETAIL_DATA =
20     isc::log::DBGLVL_TRACE_DETAIL_DATA;
21 
22 isc::log::Logger alloc_engine_logger("alloc-engine");
23 
24 } // namespace dhcp
25 } // namespace isc
26 
27