Opened 10 years ago

Closed 10 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);

Change History (1)

comment:1 by Nicklas Nordborg, 10 years ago

Resolution: fixed
Status: newclosed

(In [6444]) Fixes #1801: Switch to slf4j

Note: See TracTickets for help on using tickets.