Gili commented on Improvement LOGBACK-876

I'm guessing the following code will do what I'm asking for:

LogManager lm = LogManager.getLogManager();
Enumeration e = lm.getLoggerNames();
while (e.hasMoreElements())
{
	String loggerName = (String) e.nextElement();
	java.util.logging.Logger julLogger = lm.getLogger(loggerName);
	if (JULHelper.isRegularNonRootLogger(julLogger) && julLogger.getLevel() != null)
	{
		ch.qos.logback.classic.Logger logbackLog = (ch.qos.logback.classic.Logger) LoggerFactory.
			getLogger(julLogger.getName());
		julLogger.setLevel(JULHelper.asJULLevel(logbackLog.getLevel()));
	}
}
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira