Details
-
Improvement
-
Resolution: Unresolved
-
None
-
None
-
None
-
Operating System: Windows XP
Platform: PC
-
enhancement
-
P3
-
229
Description
SLF4JBridgeHandler should remove JUL's Console appender ,so no logs will be printed at console
may be the following code will solve this problem
SLF4JBridgeHandler.install();
Handler consolHandler = null;
Logger logger = Logger.getLogger("");
for (Handler hand : logger.getHandlers()) {
if (hand instanceof ConsoleHandler)
}
if (consolHandler != null)
thanks