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()