Details
-
Bug
-
Resolution: Duplicate
-
Critical
-
None
-
unspecified
-
None
-
Operating System: Windows
Platform: PC
-
118
Description
I'm pretty new to LOGBack but I've come across what appears to be a fairly major failing in the Eclipse console plugin.
The first time a parameter replacing log message is used the console plugin stops working and doesn't log any further messages. I haven't written a simplified test case yet but here are three lines from my code that reliably trigger the problem:
//This line appears in the console pluging and the standard tomcat console
logger.debug( "Loading foo: " + foo );
//Neither of these two lines appear in the console plugin but do appear in the
//standard tomcat console
logger.debug( "Loading foo {} bar {} for baz {}", new Object[]
);
logger.debug( "Loading bar: " + bar );