Skip to content

Commit

Permalink
Merge pull request #8 from martin-g/master
Browse files Browse the repository at this point in the history
PR #8 - Log a debug when a resource cannot be found
  • Loading branch information
l0rdn1kk0n committed Jan 17, 2014
2 parents 4c282f7 + 03298ee commit 439d02a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public IResourceStream find(final Class<?> clazz, final String pathName) {

stream = newResourceStream(webjarsPath);
} catch (Exception e) {
LOG.info("can't locate resource for: {}; {}", pathName, e.getMessage(), e);
LOG.debug("can't locate resource for: {}; {}", pathName, e.getMessage(), e);
}

if (stream == null) {
Expand Down

0 comments on commit 439d02a

Please sign in to comment.