Merge pull request #3178 from mateon1/fix/debug-logging-typo

Fix minor typo in bitswap debug logging
This commit is contained in:
Jeromy Johnson 2016-09-04 06:47:15 -07:00 committed by GitHub
commit bb7dc61a2e

View File

@ -169,7 +169,7 @@ func (bs *Bitswap) rebroadcastWorker(parent context.Context) {
case <-tick.C:
n := bs.wm.wl.Len()
if n > 0 {
log.Debug(n, "keys in bitswap wantlist")
log.Debug(n, " keys in bitswap wantlist")
}
case <-broadcastSignal.C: // resend unfulfilled wantlist keys
log.Event(ctx, "Bitswap.Rebroadcast.active")