Skip to content

Commit

Permalink
Lower bucket refresh log level
Browse files Browse the repository at this point in the history
  • Loading branch information
anacrolix committed Feb 23, 2024
1 parent 3d3872b commit f6cba96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -1332,7 +1332,7 @@ func (s *Server) refreshBucket(bucketIndex int) *traversal.Stats {
res := s.FindNode(NewAddr(addr.UDP()), id, QueryRateLimiting{})
err := res.Err
if err != nil && !errors.Is(err, TransactionTimeout) {
s.logger().Levelf(log.Warning, "error doing find node while refreshing bucket: %v", err)
s.logger().Levelf(log.Debug, "error doing find node while refreshing bucket: %v", err)
}
return res.TraversalQueryResult(addr)
},
Expand Down

0 comments on commit f6cba96

Please sign in to comment.