From 7fa29b9e4d7af274f68d7867c036bd444feef2f3 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Wed, 16 Jan 2019 10:11:47 +0000 Subject: [PATCH] Fix build error --- torrent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torrent.go b/torrent.go index f90b265f..a343f10a 100644 --- a/torrent.go +++ b/torrent.go @@ -1541,7 +1541,7 @@ func (t *Torrent) pieceHashed(piece pieceIndex, correct bool) { if correct { pieceHashedCorrect.Add(1) } else { - log.Fmsg("piece failed hash: %d connections contributed", len(touchers)).AddValue(t, p).Log(t.logger) + log.Fmsg("piece failed hash: %d connections contributed", len(touchers)).AddValues(t, p).Log(t.logger) pieceHashedNotCorrect.Add(1) } } -- 2.48.1