Skip to content

Commit

Permalink
(BIDS-2981) better log-message
Browse files Browse the repository at this point in the history
  • Loading branch information
guybrush committed Feb 5, 2024
1 parent e906010 commit 1e7a987
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions handlers/validator.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func Validator(w http.ResponseWriter, r *http.Request) {

if *churnRate == 0 {
*churnRate = 4
logger.Warning("Churn rate not set in config using 4 as default please set minPerEpochChurnLimit")
logger.Warning("Churn rate not set in config using 4 as default")
}
validatorPageData.ChurnRate = *churnRate

Expand All @@ -110,7 +110,7 @@ func Validator(w http.ResponseWriter, r *http.Request) {

if *activationChurnRate == 0 {
*activationChurnRate = 4
logger.Warning("Activation Churn rate not set in config using 4 as default please set minPerEpochChurnLimit")
logger.Warning("Activation Churn rate not set in config using 4 as default")
}

pendingCount := stats.PendingValidatorCount
Expand Down

0 comments on commit 1e7a987

Please sign in to comment.