Skip to content

Commit

Permalink
refactor: make logger creation copy-paste friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
KengoTODA committed Mar 5, 2020
1 parent f9006f1 commit f720493
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class SpotBugsPlugin implements Plugin<Project> {
public static final String SLF4J_CONFIG_NAME = "spotbugsSlf4j";
public static final String EXTENSION_NAME = "spotbugs";

private final Logger log = LoggerFactory.getLogger(SpotBugsPlugin.class);
private final Logger log = LoggerFactory.getLogger(getClass());

@Override
public void apply(Project project) {
Expand Down

0 comments on commit f720493

Please sign in to comment.