I would like to add logging to a
struts application - but not sure how to
I have common logger set up and it is working but only writes to the console
how in the properties file would I specify an file to put it out to
I ran across this:
Handler fh = new FileHandler("%t/wombat.log");
Logger.getLogger("").addHandler(fh);
but I would like it in the properites file
org.apache.commons.logging.simplelog.???
thank you!!
also what goes in the commons-logger.properties and what should go in the simplelog.properties