How to disable Time log when running job in Rundeck?

53 Views Asked by At

I tried to run some command lines in Rundeck, but it just logs the time every second, now the log is all over the place. How to disable this?

log

Below is my simple command line

commandline

1

There are 1 best solutions below

0
MegaDrive68k On BEST ANSWER

That is a script-related problem (curl / wget command I guess), you can make curl silent using the -s parameter, something like curl -s http://myhost.net. Same on wget with the -q parameter: wget -q myhost.net.