Skip to content

Commit e963fb6

Browse files
test: quieten the logger
Signed-off-by: Andreas Reichel <[email protected]>
1 parent a49e4ba commit e963fb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/net/sf/jsqlparser/util/ReflectionTestUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public static void testMethodInvocation(Object object,
129129
BiPredicate<Object, Method> returnTypeCheck,
130130
Function<Method, Object[]> argsFunction,
131131
Predicate<Method>... methodFilters) {
132-
log(Level.INFO, "testing methods of class " + object.getClass());
132+
log(Level.FINE, "testing methods of class " + object.getClass());
133133
for (Method m : object.getClass().getMethods()) {
134134
boolean testMethod = true;
135135
for (Predicate<Method> f : methodFilters) {
@@ -140,7 +140,7 @@ public static void testMethodInvocation(Object object,
140140
}
141141
}
142142
if (testMethod) {
143-
log(Level.INFO, "testing method " + m.toGenericString());
143+
log(Level.FINE, "testing method " + m.toGenericString());
144144
try {
145145
invoke(m, returnTypeCheck, argsFunction, object);
146146
} catch (Exception e) {

0 commit comments

Comments
 (0)