From 5d2ec9b3a17b74a038bc3cf92e5a10e73eff81f5 Mon Sep 17 00:00:00 2001 From: Roman Godmaire Date: Tue, 14 May 2024 21:49:23 -0400 Subject: [PATCH] misc: remove excess logging --- stormlight.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/stormlight.go b/stormlight.go index 7c3ff6f..14dc700 100644 --- a/stormlight.go +++ b/stormlight.go @@ -1,7 +1,6 @@ package main import ( - "log/slog" "slices" "time" ) @@ -107,8 +106,6 @@ func getBookWithTimestamp(timeRemaining time.Duration) (string, time.Duration) { slices.Reverse(stormlight) for _, book := range stormlight { - slog.Info("Checking...", "name", book.Name, "length", book.Length, "timeRemaining", timeRemaining) - if timeRemaining < book.Length { return book.Name, book.Length - timeRemaining }