From 09b60f3ed8174d3b9533ef980bdbb47eeec64b60 Mon Sep 17 00:00:00 2001 From: Andrew Martinez Date: Fri, 4 Jun 2021 12:30:27 -0400 Subject: [PATCH] Debugf to Infof --- controller/env/broker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/env/broker.go b/controller/env/broker.go index a16d7c8f1..0af61a664 100644 --- a/controller/env/broker.go +++ b/controller/env/broker.go @@ -109,7 +109,7 @@ func (broker *Broker) RouterDisconnected(r *network.Router) { pfxlog.Logger().WithField("routerId", r.Id). WithField("routerName", r.Name). WithField("routerFingerprint", r.Fingerprint). - Debugf("broker detected router with id %s disconnecting", r.Id) + Infof("broker detected router with id %s disconnecting", r.Id) broker.routerSyncStrategy.RouterDisconnected(r) }() }