diff options
author | Francis Dupont <fdupont@isc.org> | 2019-07-17 17:13:08 +0200 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2019-07-17 17:13:08 +0200 |
commit | 92d75011246ad0f7dfb71d07a3397d833fc4764b (patch) | |
tree | 038f642794f0773fc96349505207615898e70b97 /src/lib | |
parent | [208-finish-move-logging] Two other cases... (diff) | |
download | kea-92d75011246ad0f7dfb71d07a3397d833fc4764b.tar.xz kea-92d75011246ad0f7dfb71d07a3397d833fc4764b.zip |
[208-finish-move-logging] Improved log message
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/process/d_controller.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/process/d_controller.cc b/src/lib/process/d_controller.cc index f94504d74f..df746080cd 100644 --- a/src/lib/process/d_controller.cc +++ b/src/lib/process/d_controller.cc @@ -499,8 +499,9 @@ DControllerBase::handleOtherObjects(ConstElementPtr args) { } if (obj_name == "Logging") { LOG_WARN(dctl_logger, DCTL_CONFIG_DEPRECATED) - .arg("'Logging' defined in top level. This is deprecated." - " Please define it in the '" + app_name + "' scope."); + .arg("The top level element, 'Logging', has been deprecated." + " Loggers should be defined with the 'loggers[]'" + " element within the '" + app_name + "' scope."); continue; } LOG_WARN(dctl_logger, DCTL_CONFIG_DEPRECATED) |