Skip to content

Commit

Permalink
#38 One more tweak - no need to log the stacktrace for static check e…
Browse files Browse the repository at this point in the history
…rrors, the error message suffices
  • Loading branch information
Rob Rudin committed Dec 20, 2016
1 parent 5c0dd3f commit ee6e373
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ protected void loadAssets(Modules modules, Set<File> loadedModules) {
staticChecker.checkLoadedAssets(list);
} catch (RuntimeException ex) {
if (catchExceptions) {
logger.warn("Static check failure: " + ex.getMessage(), ex);
logger.error("Static check failure: " + ex.getMessage());
} else {
throw ex;
}
Expand Down

0 comments on commit ee6e373

Please sign in to comment.