Feature #772

Updated by J. Wienke over 12 years ago

An optional parser is required to get a logger configuration at start-up.

Two modes should be supported:
* Integration into existing configuration scheme of e.g. RSB. There we could define a property to another file with the logger configuration
* Fall-back configuration using a default file name for programs that otherwise do not use the RSC configuration mechanism. They just call something like logging::configureFromFile.

Properties would be like this:
<pre>
[rsc.logging]
LEVEL = DEBUG
SYSTEM = ConsoleLoggingSystem # both properties for root logger
a.child.logger.LEVEL = WARN
...
</pre>

Back