rspec/rules/S3416/java/rule.adoc

21 lines
796 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
It is convention to name each class's logger for the class itself. Doing so allows you to set up clear, communicative logger configuration. Naming loggers by some other convention confuses configuration, and using the same class name for multiple class loggers prevents the granular configuration of each class' logger. Some libraries, such as SLF4J warn about this, but not all do.
This rule raises an issue when a logger is not named for its enclosing class.
== Noncompliant Code Example
----
public class MyClass {
private final static Logger LOG = LoggerFactory.getLogger(WrongClass.class); // Noncompliant; multiple classes using same logger
}
----
== Compliant Solution
----
public class MyClass {
private final static Logger LOG = LoggerFactory.getLogger(MyClass.class);
}
----