]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3732b] Removed no longer used config_logger
authorFrancis Dupont <fdupont@isc.org>
Wed, 17 Jun 2015 20:24:22 +0000 (22:24 +0200)
committerFrancis Dupont <fdupont@isc.org>
Wed, 17 Jun 2015 20:24:22 +0000 (22:24 +0200)
src/lib/config/config_log.cc
src/lib/config/config_log.h

index ba95313cd4942bd60476c62e168fca7419b346b3..312466ccd5dc07eaffa34dbba223e00d9a38fc22 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2011,2015  Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2011, 2015  Internet Systems Consortium, Inc. ("ISC")
 //
 // Permission to use, copy, modify, and/or distribute this software for any
 // purpose with or without fee is hereby granted, provided that the above
@@ -19,8 +19,6 @@
 namespace isc {
 namespace config {
 
-isc::log::Logger config_logger("config");
-
 isc::log::Logger command_logger("commands");
 
 } // namespace nsas
index 2181211a719ff93a70b5553d85325be5600a18d3..19df505b47f4332eb29a178eb32b9b1c5722149d 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2011,2015  Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2011, 2015  Internet Systems Consortium, Inc. ("ISC")
 //
 // Permission to use, copy, modify, and/or distribute this software for any
 // purpose with or without fee is hereby granted, provided that the above
 namespace isc {
 namespace config {
 
-/// @brief Command processing Logger
-///
-/// Define the logger used to log messages.  We could define it in multiple
-/// modules, but defining in a single module and linking to it saves time and
-/// space.
-extern isc::log::Logger config_logger;
-
 /// @brief Command processing Logger
 ///
 /// Define the logger used to log messages related to command processing.
+/// We could define it in multiple modules, but defining in a single
+/// module and linking to it saves time and space.
 extern isc::log::Logger command_logger;
 
-// Enumerate configuration elements as they are processed.
-const int DBG_CONFIG_PROCESS = DBGLVL_TRACE_BASIC;
-
 // Enumerate configuration elements as they are processed.
 const int DBG_COMMAND = DBGLVL_COMMAND;