Hello there,
I am testing Flink, and I am trying to control the logging messages. I
defined a new logback.xml and run my program as:
java -Dlogback.configurationFile=./logback.xml WordCount
However nothing changes, the logback.xml seems just to be ignored. Any idea?
Thanks
Philippe
My file:
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%date %n FOOBAR [%thread] %level %logger{35}</pattern>
</encoder>
</appender>
<root level="SEVERE">
<appender-ref ref="STDOUT" />
</root>
</configuration>