Skip to content

log4c-1.3.1

Latest
Compare
Choose a tag to compare
@klesteb klesteb released this 03 Apr 23:32

In this release there are now appenders for stderr and stdout.
Previously you would have to use this syntax to output on stderr:

    <category name="root" priority="trace" appender="stderr" />
    <appender name="stderr" type="stream" layout="dated"/>

Where the "stream" type would use the appenders name to open for
output. Now you can use this syntax:

    <category name="root" priority="trace" appender="testing" />
    <appender name="testing" type="stderr" layout="dated"/>

Which makes the configuration file more compatiable with other
implementations.