Friday, March 11, 2005
logging according to lazyboy
Apparently this is how one should use commons logging in sipXconfig:
// define logger as private static final field
private static final Log LOG = LogFactory.getLog(SipServiceImpl.class);
// use it
LOG.info("blah");
The output goes to server.log