Skip to content

Commit

Permalink
improve(rebalancer): Suppress warning about deposit with message (#2066)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaspai authored Feb 7, 2025
1 parent edee85e commit 30eba4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/relayer/Relayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ export class Relayer {
// Verify that the _original_ message was empty, since that's what would be used in a slow fill. If a non-empty
// message was nullified by an update, it can be full-filled but preferably not automatically zero-filled.
if (!isMessageEmpty(deposit.message)) {
this.logger.warn({
this.logger[this.config.sendingRelaysEnabled ? "warn" : "debug"]({
at: "Relayer::requestSlowFill",
message: "Suppressing slow fill request for deposit with message.",
deposit,
Expand Down

0 comments on commit 30eba4e

Please sign in to comment.