You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i use your last RELEASE with collectorConfig.setLogsUnmanaged(true);
then i use the log4j-over-slf4j bridge, to manage the logging. and this bridge crashed in line 314 of JobSuite, because there is no removeAppender method:
314: Logger.getRootLogger().removeAppender(appender);
But, there is also no appender (=null), because of the new collectorConfig.setLogsUnmanaged(true); config. so please put a bugfix in your code, and move this line of code into to if (appender != null) one line above.
The text was updated successfully, but these errors were encountered:
I applied the fix you suggested plus added more conditional checks that should make life easier for SLF4J users. Can you please replace the norconex-commons-lang-*.jar and norconex-jef-*.jar files you have with the following snapshots (or update your pom.xml accordingly if you use Maven):
Hi,
i use your last RELEASE with collectorConfig.setLogsUnmanaged(true);
then i use the log4j-over-slf4j bridge, to manage the logging. and this bridge crashed in line 314 of JobSuite, because there is no removeAppender method:
314: Logger.getRootLogger().removeAppender(appender);
But, there is also no appender (=null), because of the new collectorConfig.setLogsUnmanaged(true); config. so please put a bugfix in your code, and move this line of code into to
if (appender != null)
one line above.The text was updated successfully, but these errors were encountered: