From ea0fd3459c5005264dbfc49c50dcadcdb2121c42 Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Sat, 9 Oct 2021 19:39:16 +0200 Subject: [PATCH] added some info logs --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index a5b0c05..89d1110 100644 --- a/main.go +++ b/main.go @@ -150,6 +150,7 @@ func housekeeping() { } for _, m := range tMatches { + log.Infof("[HK] Try reparsing match %d, played on %s", m.ID, m.Date) err := demoLoader.LoadDemo(&csgo.Demo{MatchId: m.ID, ShareCode: m.ShareCode}) if err != nil { log.Warningf("[HK] Failure trying to parse match %d: %v", m.ID, err)