diff --git a/client/internal/routemanager/client.go b/client/internal/routemanager/client.go index d5b1a26da..fe638edca 100644 --- a/client/internal/routemanager/client.go +++ b/client/internal/routemanager/client.go @@ -136,7 +136,7 @@ func (c *clientNetwork) getBestRouteFromStatuses(routePeerStatuses map[route.ID] } if tempScore > chosenScore || (tempScore == chosenScore && chosen == "") { - log.Infof("tempScore > chosenScore, chosen: %s", r.ID) + log.Infof("tempScore(%f) > chosenScore(%f) || (tempScore(%f) == chosenScore(%f) && chosen == \"\"(%s): chosen: %s", tempScore, chosenScore, tempScore, chosenScore, chosen, r.ID) chosen = r.ID chosenScore = tempScore }