From 730349a95a52f5b7a92325ed2477c9e57f8adccc Mon Sep 17 00:00:00 2001 From: MariusC Date: Mon, 11 Mar 2024 11:52:09 +0200 Subject: [PATCH] FIX: Warn for too low waiting list to debug --- sharding/nodesCoordinator/hashValidatorShuffler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharding/nodesCoordinator/hashValidatorShuffler.go b/sharding/nodesCoordinator/hashValidatorShuffler.go index b918b5cc980..ceecc9ca352 100644 --- a/sharding/nodesCoordinator/hashValidatorShuffler.go +++ b/sharding/nodesCoordinator/hashValidatorShuffler.go @@ -624,7 +624,7 @@ func shouldDistributeShuffledToWaitingInStakingV4(shuffledNodesCfg *shuffledNode distributeShuffledToWaitingInStakingV4 := false if totalNodes <= shuffledNodesCfg.maxNumNodes { - log.Warn("num of total nodes in waiting is too low after shuffling; will distribute " + + log.Debug("num of total nodes in waiting is too low after shuffling; will distribute " + "shuffled out nodes directly to waiting and skip sending them to auction") distributeShuffledToWaitingInStakingV4 = true