This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org
Difference between revisions of "Poor Logging Practice: Multiple Loggers"
From OWASP
Weilin Zhong (talk | contribs) |
Weilin Zhong (talk | contribs) (→Abstract) |
||
| Line 4: | Line 4: | ||
==Abstract== | ==Abstract== | ||
| − | + | It is a poor logging practice to use multiple loggers rather than logging levels in a single class. | |
==Description== | ==Description== | ||
Revision as of 16:00, 21 July 2006
This is a Vulnerability. To view all vulnerabilities, please see the Vulnerability Category page.
Abstract
It is a poor logging practice to use multiple loggers rather than logging levels in a single class.
Description
Good logging practice dictates the use of a single logger with different logging levels for each class.
Examples
The following code errantly declares multiple loggers.
public class MyClass {
private final static Logger good =
Logger.getLogger(MyClass.class);
private final static Logger bad =
Logger.getLogger(MyClass.class);
private final static Logger ugly =
Logger.getLogger(MyClass.class);
...
}