diff options
author | Francis Dupont <fdupont@isc.org> | 2015-06-17 22:24:22 +0200 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2015-06-17 22:24:22 +0200 |
commit | 4bc094581c705eb5ac53a82e36261334cf17d9f4 (patch) | |
tree | 7b1f2a898c55097a83f7e2ab3d69ac990e621623 | |
parent | [3732b] Edited documentation.txt keeping the .spec file section (diff) | |
download | kea-4bc094581c705eb5ac53a82e36261334cf17d9f4.tar.xz kea-4bc094581c705eb5ac53a82e36261334cf17d9f4.zip |
[3732b] Removed no longer used config_logger
-rw-r--r-- | src/lib/config/config_log.cc | 4 | ||||
-rw-r--r-- | src/lib/config/config_log.h | 14 |
2 files changed, 4 insertions, 14 deletions
diff --git a/src/lib/config/config_log.cc b/src/lib/config/config_log.cc index ba95313cd4..312466ccd5 100644 --- a/src/lib/config/config_log.cc +++ b/src/lib/config/config_log.cc @@ -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 diff --git a/src/lib/config/config_log.h b/src/lib/config/config_log.h index 2181211a71..19df505b47 100644 --- a/src/lib/config/config_log.h +++ b/src/lib/config/config_log.h @@ -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 @@ -23,20 +23,12 @@ 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; } // namespace config |