Why is this an issue?

Loggers should be:

Noncompliant code example

With the default regular expression LOG(?:GER)?:

public const logger:ILogger = LogUtil.getLogger(MyClass);

Compliant solution

private static const LOG:ILogger = LogUtil.getLogger(MyClass);