Details
-
Bug
-
Resolution: Unresolved
-
None
-
1.6.x
-
None
-
Operating System: Windows NT
Platform: PC
-
blocker
-
P1
-
255
Description
I have a library that instead of relying on the application to define the logging levels, it refuses to log unless a logger was created through the #exists(String)
final Logger log = (name == null) ? LogManager.exists("FRAMEWORK") : LogManager.exists(name);
if (log != null) {
log.info(obj);
}
Since LogManager exists in log4j-over-slf4j, it's already been some agreement that some methods are worthy of being implemented.
Thanks!