Skip to content

Commit

Permalink
Lower the level of logging when the (optional) injection file is not …
Browse files Browse the repository at this point in the history
…found #42
  • Loading branch information
h3xstream committed May 1, 2015
1 parent 6376831 commit a08e5e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static Properties getInjectionSourceProperties(String resourceBaseName) {
String resourceName = resourceBaseName + "/" + INJECTION_SOURCE_RESOURCE_NAME;
URL url = CustomInjectionSource.class.getClassLoader().getResource(resourceName);
if (url == null) {
LOG.severe(resourceName + " not found.");
LOG.info(resourceName + " not found.");
}
return loadProperties(urls.toArray(new URL[urls.size()]), loadProperties(url, null));
}
Expand Down

0 comments on commit a08e5e0

Please sign in to comment.