lowered level of a debug statement

This commit is contained in:
Adrian Cole 2011-02-27 19:57:10 -08:00
parent 7fc56e86ef
commit 54ab2aa82b
1 changed files with 2 additions and 2 deletions

View File

@ -324,9 +324,9 @@ public class RestAnnotationProcessor<T> {
} else if (isConstantDeclaration(method)) { } else if (isConstantDeclaration(method)) {
bindConstant(method); bindConstant(method);
} else if (!method.getDeclaringClass().equals(declaring)) { } else if (!method.getDeclaringClass().equals(declaring)) {
logger.debug("skipping potentially overridden method %s", method); logger.trace("skipping potentially overridden method %s", method);
} else if (method.isAnnotationPresent(Delegate.class)) { } else if (method.isAnnotationPresent(Delegate.class)) {
logger.debug("skipping delegate method %s", method); logger.trace("skipping delegate method %s", method);
} else if (!method.getName().startsWith("new")) { } else if (!method.getName().startsWith("new")) {
logger.trace("Method is not annotated as either http or constant: %s", method); logger.trace("Method is not annotated as either http or constant: %s", method);
} }