From e814b62fd3de76ab226cec5acd6f91d44e79e0f3 Mon Sep 17 00:00:00 2001 From: Gurjot Date: Mon, 6 Jan 2025 13:42:44 +0530 Subject: [PATCH] fix log --- internal/services/expiry_checker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/services/expiry_checker.go b/internal/services/expiry_checker.go index 64bde37..6f29685 100644 --- a/internal/services/expiry_checker.go +++ b/internal/services/expiry_checker.go @@ -54,7 +54,7 @@ func (s *Service) checkExpiry(ctx context.Context) *types.Error { // Check if the delegation is in a qualified state to transition to Withdrawable if !utils.Contains(types.QualifiedStatesForWithdrawable(), delegation.State) { - log.Error(). + log.Debug(). Str("staking_tx", delegation.StakingTxHashHex). Str("current_state", delegation.State.String()). Msg("current state is not qualified for withdrawable")