From 87cec4ec37ce5cc83d40074f3c49f2d14874c4f1 Mon Sep 17 00:00:00 2001 From: "Bora M. Alper" Date: Sun, 30 Dec 2018 19:40:35 +0300 Subject: [PATCH] magneticod: latest status messages now of priority info (rather than warn) --- cmd/magneticod/dht/mainline/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/magneticod/dht/mainline/service.go b/cmd/magneticod/dht/mainline/service.go index 4a735af..f8787d4 100644 --- a/cmd/magneticod/dht/mainline/service.go +++ b/cmd/magneticod/dht/mainline/service.go @@ -88,7 +88,7 @@ func (s *TrawlingService) trawl() { if len(s.routingTable) == 0 { s.bootstrap() } else { - zap.L().Warn("Latest status:", zap.Int("n", len(s.routingTable)), + zap.L().Info("Latest status:", zap.Int("n", len(s.routingTable)), zap.Uint("maxNeighbors", s.maxNeighbors)) s.findNeighbors() s.routingTable = make(map[string]*net.UDPAddr)