Skip to content

Commit

Permalink
ARIES-669 : Make WeavingHook less chatty on benign failure
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/aries/trunk/proxy/proxy-impl@1134014 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
timothyjward committed Jun 9, 2011
1 parent 3949e11 commit d17324e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public final void weave(WovenClass wovenClass) {
e.getCause() instanceof UnableToProxyException){
//This is a weaving failure that should be logged, but the class
//can still be loaded
LOGGER.info(NLS.MESSAGES.getMessage("cannot.weave", wovenClass.getClassName()), e);
LOGGER.trace(NLS.MESSAGES.getMessage("cannot.weave", wovenClass.getClassName()), e);
} else {
String failureMessage = NLS.MESSAGES.getMessage("fatal.weaving.failure", wovenClass.getClassName());
//This is a failure that should stop the class loading!
Expand Down

0 comments on commit d17324e

Please sign in to comment.