From e488e74cb85b815feef74c52da8d19a87728ca61 Mon Sep 17 00:00:00 2001 From: Philipp Gackstatter Date: Thu, 21 Dec 2023 09:08:37 +0100 Subject: [PATCH] Log performance factor as info --- .../sybilprotectionv1/performance/performance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/protocol/sybilprotection/sybilprotectionv1/performance/performance.go b/pkg/protocol/sybilprotection/sybilprotectionv1/performance/performance.go index 76df0659c..67cef03c8 100644 --- a/pkg/protocol/sybilprotection/sybilprotectionv1/performance/performance.go +++ b/pkg/protocol/sybilprotection/sybilprotectionv1/performance/performance.go @@ -261,7 +261,7 @@ func (t *Tracker) ApplyEpoch(epoch iotago.EpochIndex, committee *account.Account panic(ierrors.Wrapf(err, "failed to calculate pool rewards for account %s", accountID)) } - t.LogDebug("PerformanceFactor", "accountID", accountID, "epochPerformanceFactor", epochPerformanceFactor, "poolReward", poolReward) + t.LogInfo("PerformanceApplyEpoch", "accountID", accountID, "epochPerformanceFactor", epochPerformanceFactor, "poolReward", poolReward) if err = rewardsMap.Set(accountID, &model.PoolRewards{ PoolStake: pool.PoolStake,