diff --git a/orchestrator/batch_request.go b/orchestrator/batch_request.go index 72f628d4..7ee1e01d 100644 --- a/orchestrator/batch_request.go +++ b/orchestrator/batch_request.go @@ -47,7 +47,7 @@ func (l *batchRequestLoop) requestBatches(ctx context.Context) error { } if len(fees) == 0 { - l.Logger().Debugln("no outgoing withdrawals to batch") + l.Logger().Debugln("no withdrawals to batch") return nil } diff --git a/orchestrator/relayer.go b/orchestrator/relayer.go index 56c6cf46..17e5b9d2 100644 --- a/orchestrator/relayer.go +++ b/orchestrator/relayer.go @@ -150,7 +150,7 @@ func (l *relayerLoop) relayValset(ctx context.Context) error { if timeElapsed := time.Since(blockTime); timeElapsed <= l.relayValsetOffsetDur { timeRemaining := time.Duration(int64(l.relayValsetOffsetDur) - int64(timeElapsed)) - l.Logger().WithField("time_remaining", timeRemaining.String()).Debugln("valset relay offset duration not expired") + l.Logger().WithField("time_remaining", timeRemaining.String()).Debugln("valset relay offset not reached yet") return nil } @@ -197,7 +197,7 @@ func (l *relayerLoop) relayBatch(ctx context.Context) error { } if oldestConfirmedBatch == nil { - l.Logger().Debugln("no outgoing batch to relay") + l.Logger().Debugln("no batch to relay") return nil } @@ -239,7 +239,7 @@ func (l *relayerLoop) relayBatch(ctx context.Context) error { if timeElapsed := time.Since(blockTime); timeElapsed <= l.relayBatchOffsetDur { timeRemaining := time.Duration(int64(l.relayBatchOffsetDur) - int64(timeElapsed)) - l.Logger().WithField("time_remaining", timeRemaining.String()).Debugln("batch relay offset duration not expired") + l.Logger().WithField("time_remaining", timeRemaining.String()).Debugln("batch relay offset not reached yet") return nil } diff --git a/orchestrator/signer.go b/orchestrator/signer.go index cdb9b688..9b429f0d 100644 --- a/orchestrator/signer.go +++ b/orchestrator/signer.go @@ -110,7 +110,7 @@ func (l *ethSignerLoop) signNewBatch(ctx context.Context) error { } if oldestUnsignedTransactionBatch == nil { - l.Logger().Debugln("no outgoing batch to confirm") + l.Logger().Debugln("no batch to confirm") return nil }