From 089e3b45a3bf62ef797e871580b007a4e02dfa4a Mon Sep 17 00:00:00 2001
From: josh <josh@elixxir.io>
Date: Thu, 25 Mar 2021 11:57:31 -0700
Subject: [PATCH] Fix issue in print statement

---
 io/receiveGatewayPingReport.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/io/receiveGatewayPingReport.go b/io/receiveGatewayPingReport.go
index b219bb2a..93d41377 100644
--- a/io/receiveGatewayPingReport.go
+++ b/io/receiveGatewayPingReport.go
@@ -60,7 +60,7 @@ func ReceiveGatewayPingReport(report *pb.GatewayPingReport, auth *connect.Auth,
 		}
 		return nil
 	}
-	jww.TRACE.Printf("Failed to ping %d gateways for round %d", len(report.FailedGateways))
+	jww.TRACE.Printf("Failed to ping %d gateways for round %d", len(report.FailedGateways), roundID)
 
 	// Initiate round error if there are un-pingable gateways
 	if len(report.FailedGateways) != 0 {
-- 
GitLab