Skip to content

Commit

Permalink
Fix debug output of plugin class path
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiX authored Dec 4, 2020
1 parent e217393 commit a3fac7a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ protected void logPluginClasspath() {
StringBuilder sb = new StringBuilder();
for (Artifact artifact : pluginArtifacts) {
sb.append(artifact.getFile());
sb.append(", ");
}
getLog().debug("Plugin classpath:\n" + sb.toString());
}
Expand Down

0 comments on commit a3fac7a

Please sign in to comment.