From eddd2b9dc75275fe2b2d12b3295859ed4f1bfd50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Wed, 12 Dec 2018 16:37:43 +0200 Subject: [PATCH] Fix debug log formatting issues --- workers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workers.go b/workers.go index 99a96706..32f9da81 100644 --- a/workers.go +++ b/workers.go @@ -205,7 +205,7 @@ func (bs *Bitswap) rebroadcastWorker(parent context.Context) { case <-tick.C: n := bs.wm.WantCount() if n > 0 { - log.Debug(n, " keys in bitswap wantlist") + log.Debugf("%d keys in bitswap wantlist", n) } case <-broadcastSignal.C: // resend unfulfilled wantlist keys log.Event(ctx, "Bitswap.Rebroadcast.active") @@ -259,7 +259,7 @@ func (bs *Bitswap) providerQueryManager(ctx context.Context) { defer wg.Done() err := bs.network.ConnectTo(child, p) if err != nil { - log.Debug("failed to connect to provider %s: %s", p, err) + log.Debugf("failed to connect to provider %s: %s", p, err) } }(p) }