Skip to content

Commit

Permalink
mojohaus#519 minor updates to reduce verbosity of standard execution
Browse files Browse the repository at this point in the history
  • Loading branch information
d-ryan-ashcraft committed Oct 18, 2023
1 parent f59f6ec commit a621a52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public void load() throws IOException {

license.setDescription(licenseDescription);

LOG.info("register {}", license.getDescription());
LOG.debug("register {}", license.getDescription());
LOG.debug("{}", license);
licenses.add(license);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public void addRepository(String extraResolver) throws IOException {
addRootPackageClassPathRepository();
} else if (extraResolver.startsWith(CLASSPATH_PROTOCOL)) {
extraResolver = extraResolver.substring(CLASSPATH_PROTOCOL.length());
LOG.info("Using classpath extraresolver: {}", extraResolver);
LOG.debug("Using classpath extraresolver: {}", extraResolver);
URL baseURL = getClass().getClassLoader().getResource(extraResolver);
addRepository(baseURL);
} else {
Expand Down

0 comments on commit a621a52

Please sign in to comment.