Skip to content

Commit

Permalink
fix(mongodb-v2): set logging to debug when field list is out of sync (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
joelluijmes authored Dec 7, 2021
1 parent dfdd2c5 commit 5ab5cfc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private static void transformToStringIfMarked(final ObjectNode jsonNodes, final
if (data != null) {
jsonNodes.put(fieldName, data.asText());
} else {
LOGGER.error("Field list out of sync, Document doesn't contain field: {}", fieldName);
LOGGER.debug("WARNING Field list out of sync, Document doesn't contain field: {}", fieldName);
}
}
}
Expand Down

0 comments on commit 5ab5cfc

Please sign in to comment.