Another Small fix! Last one I promise.

This commit is contained in:
2025-03-13 22:56:47 +00:00
parent 62b5f30966
commit d7a9c847b0
+6
View File
@@ -63,6 +63,12 @@ func main() {
fmt.Println("(No text will be shown because logging is enabled, dont worry, the program is still running)") 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") log.Print("Starting new program... (logging to file)\n\n")
isVerbose = true isVerbose = true
if maxTime == -1 {
log.Println("Max time: disabled")
} else {
log.Println("Max time:", maxTime)
}
} }
creds, err := getCreds() creds, err := getCreds()