This repository was archived by the owner on Nov 27, 2020. It is now read-only.
Commit a9c4e32
committed
minor #1044 Don't log console errors in console output (chalasr)
This PR was merged into the 3.3-dev branch.
Discussion
----------
Don't log console errors in console output
Since symfony/symfony#21003, console errors are logged, and since the `console` channel is not ignored by the monolog console handler, the log is written to stderr.
IMHO it's useless since the ran command already write the message into, it's just having two traces for the same error, which doesn't make sense to me.
I propose to fix that.
__Before__

__After__

If one wants the trace, then one can run the command in verbose mode or look at its log file.
Commits
-------
2bf1249 Don't log console errors in console output1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
| 23 | + | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
| |||
0 commit comments