From 356d1bc09f731b92f2b2de55d8e16e62df63a6d2 Mon Sep 17 00:00:00 2001 From: Jono Wenger <jono@elixxir.io> Date: Wed, 12 Oct 2022 11:05:03 -0700 Subject: [PATCH] Fix jww.WARN --- cmix/clockSkew/timeTracker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmix/clockSkew/timeTracker.go b/cmix/clockSkew/timeTracker.go index dbb2d71c6..0d8e79a7e 100644 --- a/cmix/clockSkew/timeTracker.go +++ b/cmix/clockSkew/timeTracker.go @@ -86,7 +86,7 @@ func New(clamp time.Duration) Tracker { func (t *timeOffsetTracker) Add(gwID *id.ID, startTime, rTs time.Time, rtt, gwD time.Duration) { if abs(startTime.Sub(rTs)) > day { jww.WARN.Printf("Time data from %s dropped, more than an day off from"+ - " local time; local: %s, remote: %s", startTime, rTs) + " local time; local: %s, remote: %s", gwID, startTime, rTs) return } -- GitLab