1 // Copyright (C) 2011-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 /// Defines the logger used by the Hooks
8 
9 #include <config.h>
10 
11 #include <hooks/hooks_log.h>
12 #include <log/macros.h>
13 
14 namespace isc {
15 namespace hooks {
16 
17 isc::log::Logger hooks_logger("hooks");
18 
19 isc::log::Logger callouts_logger("callouts");
20 
21 extern const int HOOKS_DBG_TRACE = isc::log::DBGLVL_TRACE_BASIC;
22 extern const int HOOKS_DBG_CALLS = isc::log::DBGLVL_TRACE_BASIC_DATA;
23 extern const int HOOKS_DBG_EXTENDED_CALLS = isc::log::DBGLVL_TRACE_DETAIL_DATA;
24 
25 
26 } // namespace hooks
27 } // namespace isc
28 
29