Opened 11 years ago
Closed 11 years ago
#1801 closed enhancement (fixed)
Switch to slf4j
Reported by: | Nicklas Nordborg | Owned by: | everyone |
---|---|---|---|
Priority: | minor | Milestone: | BASE 3.3 |
Component: | core | Version: | |
Keywords: | Cc: |
Description
Current logging mechanism explicitly use log4j:
private static final org.apache.log4j.Logger log = org.apache.log4j.LogManager.getLogger("net.sf.basedb.core.Application");
Extensions and most other code use slf4j. The above should be replaced with:
private static final [org.slf4j.]Logger logger = [org.slf4j.]LoggerFactory.getLogger(Application.class);
Note:
See TracTickets
for help on using tickets.
(In [6444]) Fixes #1801: Switch to slf4j