How to make Apache Common Logging Write to Specific Disc Log File
- by Yan Cheng CHEOK
I am using Apache Common Logging in Desktop Application.
private static final Log log = LogFactory.getLog(Utils.class);
How can I direct, Apache Common Logging to write to disc log file, when I perform
log.error(null, exp);
Thanks.