Skip to content

Commit 674bae3

Browse files
committed
Use finest logging level
This removes a confusing stack trace from the test run
1 parent f5c920a commit 674bae3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/mybatis/dynamic/sql/reflection/wrapper/BeanWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ private Object invoke(Invoker invoker) {
6363
try {
6464
return invoker.invoke(object, NO_ARGUMENTS);
6565
} catch (ReflectiveOperationException e) {
66-
log.log(Level.WARNING,
66+
log.log(Level.FINEST,
6767
"Invoker exception while retrieving property value, returning null", e); //$NON-NLS-1$
6868
return null;
6969
}

0 commit comments

Comments
 (0)