Skip to content

Commit

Permalink
Closes #76
Browse files Browse the repository at this point in the history
Changes so that the logging is at debug level rather than info level.
  • Loading branch information
matthewhorridge committed May 19, 2016
1 parent c48b10e commit 9a61c34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private boolean pluginSanityCheck(Bundle b) {
boolean passed = true;
boolean hasPluginXml = (b.getResource("/plugin.xml") != null);
if (b.getHeaders().get(BUNDLE_WITHOUT_PLUGIN_XML) == null && !hasPluginXml) {
logger.info("\t" + getNiceBundleName(b) + " Plugin has no plugin.xml resource");
logger.debug("\t" + getNiceBundleName(b) + " Plugin has no plugin.xml resource");
passed = false;
}
if (hasPluginXml && !isSingleton(b)) {
Expand Down

0 comments on commit 9a61c34

Please sign in to comment.