I'm using the LogFixture
LogFixtureBuilder logBuilder = LogFixture.builder()
// Log to the console for debugging convenience
.toConsole().logger("org.apache.drill.exec.store.msgpack", Level.DEBUG);
try (LogFixture logs = logBuilder.build()) {
Basice logback.xml file is
<configuration>
<root>
<level value="error" />
</root>
</configuration>
However when I do so I get two outputs. The LogFixtureBuilder seems to
install the appender twice. When I step into the logback code I saw that
the appender was found on "org.apache.drill" and on the ROOT Logger. Which
is why I get two outputs.
I'm using the API correctly?
thanks
jc