Shell timeout log only every 10 seconds

This commit is contained in:
Paulo Truta
2024-11-04 13:36:52 +01:00
parent 80fc8b40cd
commit b11034dd17
+3 -1
View File
@@ -1077,7 +1077,9 @@ func taskStartShell(args taskStartShellArgs) string {
utils.WriteOption("SHELL_STATUS", "not_running")
break
}
fmt.Println("Active Shell Timeout is " + fmt.Sprint(timeout) + " seconds")
if timeout%10 == 0 {
fmt.Println("Active Shell Timeout is " + fmt.Sprint(timeout) + " seconds")
}
time.Sleep(1 * time.Second)
}
}()