From d7a9c847b05afd8de341741e60ff1b750e7ed1ba Mon Sep 17 00:00:00 2001 From: AfonsoCMSousa Date: Thu, 13 Mar 2025 22:56:47 +0000 Subject: [PATCH] Another Small fix! Last one I promise. --- main.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/main.go b/main.go index 51736fb..2b9dcb5 100644 --- a/main.go +++ b/main.go @@ -63,6 +63,12 @@ func main() { fmt.Println("(No text will be shown because logging is enabled, dont worry, the program is still running)") log.Print("Starting new program... (logging to file)\n\n") isVerbose = true + + if maxTime == -1 { + log.Println("Max time: disabled") + } else { + log.Println("Max time:", maxTime) + } } creds, err := getCreds()