Skip to content

Commit

Permalink
reduce log level from INFO to FINE
Browse files Browse the repository at this point in the history
  • Loading branch information
jtaub authored and zolyfarkas committed Feb 8, 2024
1 parent ea4d800 commit abcf2a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spf4j-core/src/main/java/org/spf4j/base/Reflections.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public final class Reflections {
f = Method.class.getDeclaredField("parameterTypes");
f.setAccessible(true);
} catch (NoSuchFieldException | SecurityException ex) {
Logger.getLogger(Reflections.class.getName()).log(Level.INFO,
Logger.getLogger(Reflections.class.getName()).log(Level.FINE,
"Para type stealing from Method not supported", ex);
f = null;
}
Expand All @@ -98,7 +98,7 @@ public final class Reflections {
f = Constructor.class.getDeclaredField("parameterTypes");
f.setAccessible(true);
} catch (NoSuchFieldException | SecurityException ex) {
Logger.getLogger(Reflections.class.getName()).log(Level.INFO,
Logger.getLogger(Reflections.class.getName()).log(Level.FINE,
"Para type stealing from Constructor not supported", ex);
f = null;
}
Expand Down

0 comments on commit abcf2a9

Please sign in to comment.