Fixed
Details
Assignee
Alejandro GalueAlejandro GalueReporter
Alejandro GalueAlejandro GalueComponents
Fix versions
Affects versions
Priority
Major
Details
Details
Assignee
Alejandro Galue
Alejandro GalueReporter
Alejandro Galue
Alejandro GalueComponents
Fix versions
Affects versions
Priority
PagerDuty
PagerDuty
PagerDuty
Created May 4, 2015 at 5:05 PM
Updated May 5, 2015 at 12:48 PM
Resolved May 5, 2015 at 8:49 AM
There are still several classes using the old prefix/category convention for logging after migrating to Log4j2 with SLF4.
For this reason, the messages on those classes are not properly routed to the log.
For example:
private final Logger logger = LoggerFactory.getLogger("OpenNMS.Poller." + JCifsMonitor.class.getName());
should be:
private final Logger logger = LoggerFactory.getLogger(JCifsMonitor.class);