Skip to content

Commit 7236019

Browse files
Change log level from fine to info for unknown fields (#105)
This was already a suggested change in #75 It was my mistake to advise you to revert it back to fine. It would be better, if it was info instead. Sorry, I was mixing up the meaning of FINE and DEBUG/TRACE and thought FINE would stand for lower severity, but in fact it stands for higher severity, which we do not want for this case.
1 parent 2a392f9 commit 7236019

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/dev/zarr/zarrjava/experimental/ome/OmeObjectMappers.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public boolean handleUnknownProperty(
4747
: beanOrClass.getClass().getName();
4848
String key = target + "#" + propertyName;
4949
if (UNKNOWN_FIELDS.add(key)) {
50-
LOGGER.fine(
50+
LOGGER.info(
5151
"Ignoring unknown OME metadata field '" + propertyName + "' for " + target);
5252
}
5353
p.skipChildren();

0 commit comments

Comments
 (0)