Skip to content

Commit

Permalink
log fetchcontext not found on a class as DEBUG instead of WARN
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Ngouagna committed Jun 22, 2017
1 parent 07e97a6 commit 2481cae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ private String[][] includeExcludes(String fetchContext) {
includes.addAll(sourceFetchContext.getIncludes());
excludes.addAll(sourceFetchContext.getExcludes());
} else {
LOGGER.warn("Unable to find fetch context <" + fetchContext + "> for class <" + clazz.getName() + ">. It will be ignored.");
LOGGER.debug("Unable to find fetch context <" + fetchContext + "> for class <" + clazz.getName() + ">. It will be ignored.");
}
}
}
Expand Down

0 comments on commit 2481cae

Please sign in to comment.