Details
-
Bug
-
Resolution: Won't Fix
-
Major
-
None
-
0.9.18
-
None
Description
Preventing garbage-collection of unused Loggers is a bad idea.
The following code should not fail:
for(int i=0;i<10000000;i++) {
LoggerFactory.getLogger("Foo."+i).debug("Foo!");
}