summaryrefslogtreecommitdiffstats
path: root/src/lib/process/d_controller.h
diff options
context:
space:
mode:
authorFrancis Dupont <fdupont@isc.org>2019-01-07 19:42:03 +0100
committerFrancis Dupont <fdupont@isc.org>2019-05-23 00:10:24 +0200
commit7bc4cc182af343fc0daeef92a78f5d8ea0f38dc8 (patch)
tree6fdc34eabab3f6b13a594b8d3b8c1a98d0468a45 /src/lib/process/d_controller.h
parent[#208,!196] regen flex/bison (diff)
downloadkea-7bc4cc182af343fc0daeef92a78f5d8ea0f38dc8.tar.xz
kea-7bc4cc182af343fc0daeef92a78f5d8ea0f38dc8.zip
[208-move-logging-from-global-objects-to-global-params] Almost done. Checkpoint of the day
Diffstat (limited to 'src/lib/process/d_controller.h')
-rw-r--r--src/lib/process/d_controller.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/src/lib/process/d_controller.h b/src/lib/process/d_controller.h
index 79cf4f1dde..8f971a0451 100644
--- a/src/lib/process/d_controller.h
+++ b/src/lib/process/d_controller.h
@@ -186,9 +186,6 @@ public:
///
/// @code
/// { "<module-name>": {<module-config>}
- ///
- /// # Logging element is optional
- /// ,"Logging": {<logger config}
/// }
///
/// where:
@@ -204,12 +201,11 @@ public:
/// file content using an alternate parser. If it returns an empty pointer
/// than the JSON parsing providing by Element::fromJSONFile() is called.
///
- /// Once parsed, the method looks for the Element "Logging" and, if present
- /// uses it to configure logging.
- ///
- /// It then extracts the set of configuration elements for the
- /// module-name that matches the controller's app_name_ and passes that
- /// set into @c updateConfig() (or @c checkConfig()).
+ /// Once parsed, the method extracts the set of configuration
+ /// elements for the module-name that matches the controller's app_name_,
+ /// looks for the loggers entry and, if present uses it to configure
+ /// logging. It then passes that set into @c updateConfig() (or
+ /// @c checkConfig()).
///
/// The file may contain an arbitrary number of other modules.
///