fix: reduce log interval to 1 second for more frequent statistics updates
All checks were successful
Release Tag / release (push) Successful in 28s

This commit is contained in:
2025-01-22 19:37:30 -06:00
parent fed9bbe218
commit 4a23eecae0

View File

@@ -128,7 +128,7 @@ func (sc *SteamCache) Run() {
sc.mu.Unlock()
sc.LogStats()
t := time.NewTicker(10 * time.Second)
t := time.NewTicker(1 * time.Second)
go func() {
for range t.C {
sc.LogStats()