Logging
"Matthew E. Porter" <[email protected]>
| Newsgroups | gmane.comp.java.javalobby.communityplatform |
|---|---|
| Message-ID | <[email protected]> |
Team:
Greetings! Since one of the goals is to allow administrator level
logging, all System.err.print*s() and System.out.print*s() have been
replaced with Apache's common logging for the 0.5.1 release. Please
continue this and stamp out those resource hogging System.*.prints!
Below is a sample format of a Log instance variable from
FileDownloadServlet:
private static Log log =
LogFactory.getLog(FileDownloadServlet.class.getName());
In addition, please check the log levels if you had any code changed.
Thanks!
-matthew porter