From 0abfdcc88b90a853ee640bc088f6543848c8abea Mon Sep 17 00:00:00 2001 From: David Hill Date: Thu, 17 Oct 2013 16:58:57 -0400 Subject: [PATCH] fix reversed variables in a warning message. --- peer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peer.go b/peer.go index f14a5506..8f8880c8 100644 --- a/peer.go +++ b/peer.go @@ -938,7 +938,7 @@ func (p *peer) inHandler() { // matter. if p.versionKnown { log.Warnf("Peer %s no answer for %d minutes, "+ - "disconnecting", idleTimeoutMinutes, p) + "disconnecting", p, idleTimeoutMinutes) } p.Disconnect() })