I upgraded from 3.3 to 4.0rc5, and the -q and --quiet options have stopped suppressing output. Other switches seem to be working fine. I'm on php 5.3.3.
| Comment | File | Size | Author |
|---|---|---|---|
| #6 | drush-quiet-stderr.patch | 797 bytes | greg.1.anderson |
I upgraded from 3.3 to 4.0rc5, and the -q and --quiet options have stopped suppressing output. Other switches seem to be working fine. I'm on php 5.3.3.
| Comment | File | Size | Author |
|---|---|---|---|
| #6 | drush-quiet-stderr.patch | 797 bytes | greg.1.anderson |
Comments
Comment #1
moshe weitzman commentedWell, I get nothing printed with
drush st -q. What command are you running?Comment #2
bfroehle commentedDitto...
Comment #3
bfroehle commentedComment #4
brianmercer commentedYeah, what bfrohle said. My cron job started spamming me after I upgraded.
Comment #5
greg.1.anderson commentedLooks like -q needs to affect stderr, not just stdout. Drush now writes log output to stderr.
Workaround:
drush cron -q 2>/dev/null(but not to worry, I'll fix this pretty soon)Comment #6
greg.1.anderson commentedTrivial patch to make stderr respect --quiet, so cron -q will be quiet again.
Comment #7
moshe weitzman commentedlooks good.
Comment #8
greg.1.anderson commentedCommitted.