Skip to content

Commit

Permalink
reduce logging for SpecialValueTransformer (#12970)
Browse files Browse the repository at this point in the history
  • Loading branch information
aishikbh authored Apr 19, 2024
1 parent bebb491 commit d840413
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public GenericRow transform(GenericRow record) {
}
}
if (_negativeZeroConversionCount > 0 || _nanConversionCount > 0) {
LOGGER.info("Converted {} -0.0s to 0.0 and {} NaNs to null", _negativeZeroConversionCount, _nanConversionCount);
LOGGER.debug("Converted {} -0.0s to 0.0 and {} NaNs to null", _negativeZeroConversionCount, _nanConversionCount);
}
return record;
}
Expand Down

0 comments on commit d840413

Please sign in to comment.