Loggers should be:

Noncompliant Code Example

With a default regular expression of LOG(?:GER)?:

public Logger logger = LoggerFactory.getLogger(Foo.class);  // Noncompliant

Compliant Solution

private static final Logger LOGGER = LoggerFactory.getLogger(Foo.class);

Exceptions

Variables of type org.apache.maven.plugin.logging.Log are ignored.