-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Verbosity parameters #45
Comments
Definitely would be nice to have a fully verbose mode that outputs the current state of minion to STDERR. E.g. Executing task: etc etc (should this be a separate feature request?) |
So, STDOUT is agreed as the better target for this messaging |
Any reasons why? Haven't checked the logs yet and it'd be good to know the reasoning for future reference |
Some minion tasks can appear to either be doing nothing or stalled as they can take over 10 minutes to produce any output. This especially happens when a number of migrations are executed together. It would be a better user experience to be able to optionally generate status output during each tasks execution. |
Sorry, I meant why STDOUT VS. STDERR |
You could argue that verbose output to the client is not strictly an error condition. I would accept that argument. My initial suggestion was purely based on my C programming where I debug output to STDERR. STDOUT would be better, as it is easier to pipe elsewhere (if that was required or appropriate - I doubt it to be honest). |
There should be a standard way to add
-v
one or more times to increase how much output is generated. We might also want a-q
for the opposite effect.This is related to #39 and some discussion has already happened there but I am splitting that ticket up :)
The text was updated successfully, but these errors were encountered: