From 21e1e8cec44ed961e892d500a699d52c19cd83f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Men=C3=A9ndez?= Date: Fri, 12 Apr 2024 12:03:40 +0200 Subject: [PATCH] removing annoying debug message --- scanner/providers/gitcoin/gitcoin_provider.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/scanner/providers/gitcoin/gitcoin_provider.go b/scanner/providers/gitcoin/gitcoin_provider.go index ee46a67f..5a4401e9 100644 --- a/scanner/providers/gitcoin/gitcoin_provider.go +++ b/scanner/providers/gitcoin/gitcoin_provider.go @@ -430,9 +430,6 @@ func (g *GitcoinPassport) startScoreUpdates() { default: lastSync := time.Unix(g.lastSyncedTime.Load(), 0) if time.Since(lastSync).Abs() < g.cooldown { - log.Debugw("last sync time is too recent, waiting...", - "cooldown(s)", g.cooldown.Seconds(), - "time_to_next_sync(s)", g.cooldown.Seconds()-time.Since(lastSync).Seconds()) time.Sleep(30 * time.Second) continue }