You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just guessing here: the quiet option is probably Symfony standard. It doesn't have any effect since we're using error_log instead of Symfony output for printing to be able to separate dumped date from progress. Easiest thing would be to remove that option.
I think a common use case is that the script is executed as a cron-job. In my case on a Raspberry.
Cron sends the output of the process by mail. So I get a daily mail, even if everything was fine.
To prevent this, I start the script with >/dev/null 2>&1
But this also means that I do not get a mail in case of an error.
It would be helpful if there was a quiet option that only outputs when an error occurs.
The command line option "-" or "--quiet" doesn't work. It displays the normal output.
The text was updated successfully, but these errors were encountered: