Skip to content

Commit

Permalink
Quick logging fix (#2363)
Browse files Browse the repository at this point in the history
* Temporary fix to lower clouding of logs

* Formattting
  • Loading branch information
mineralntl committed May 1, 2024
1 parent 6fe37e8 commit e3a6e07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public Value reduce(Key key, Iterator<Value> iter) {

} catch (InvalidProtocolBufferException e) {
if (key.isDeleted()) {
log.warn("Value passed to aggregator for a delete key was not of type Uid.List");
log.trace("Value passed to aggregator for a delete key was not of type Uid.List");
} else {
log.error("Value passed to aggregator was not of type Uid.List", e);
}
Expand Down

0 comments on commit e3a6e07

Please sign in to comment.