slawekjaranowski commented on code in PR #811: URL: https://github.com/apache/maven-surefire/pull/811#discussion_r1966705722
########## maven-failsafe-plugin/src/main/java/org/apache/maven/plugin/failsafe/VerifyMojo.java: ########## @@ -168,7 +167,10 @@ public class VerifyMojo extends AbstractMojo implements SurefireReportParameters private volatile PluginConsoleLogger consoleLogger; - @Inject + public VerifyMojo() { + this.logger = LoggerFactory.getLogger(getClass()); Review Comment: In some place we initialize logger at field level and in other place in constructor. For logger there is common to initialize it at field level. I would like to have similar in all place. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org