Skip to content

Commit

Permalink
chore: remove annoying log
Browse files Browse the repository at this point in the history
  • Loading branch information
ablax committed Aug 29, 2024
1 parent dd26c5c commit e128fda
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/java/com/limechain/utils/json/ObjectMapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ private Field findField(Class<?> clazz, String fieldName) {
if (failOnUnknownField) {
throw new IllegalStateException("Field " + fieldName + " does not exist in " + clazz.getName());
} else {
log.log(Level.FINE, "Field " + fieldName + " does not exist in " + clazz.getName());
return null;
}
}
Expand Down

0 comments on commit e128fda

Please sign in to comment.