Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cf728a5

Browse files
committed
bug #30497 [HttpKernel] Change default log level for output streams (yceruto)
This PR was merged into the 3.4 branch. Discussion ---------- [HttpKernel] Change default log level for output streams | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | yes (visual) | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #27510 | License | MIT **BEFORE** ![default-logger-level-before](https://user-images.githubusercontent.com/2028198/54072209-94e93980-4245-11e9-855a-2d32de797072.png) **AFTER** ![default-logger-level-after](https://user-images.githubusercontent.com/2028198/54072210-9a468400-4245-11e9-96ec-ce5334aba72c.png) This should improve the first DX/UX for console-based apps. Commits ------- d69d571 Change default log level for output streams
2 parents ee62741 + d69d571 commit cf728a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/Log/Logger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Logger extends AbstractLogger
4040
public function __construct($minLevel = null, $output = 'php://stderr', callable $formatter = null)
4141
{
4242
if (null === $minLevel) {
43-
$minLevel = LogLevel::WARNING;
43+
$minLevel = 'php://stdout' === $output || 'php://stderr' === $output ? LogLevel::CRITICAL : LogLevel::WARNING;
4444

4545
if (isset($_ENV['SHELL_VERBOSITY']) || isset($_SERVER['SHELL_VERBOSITY'])) {
4646
switch ((int) (isset($_ENV['SHELL_VERBOSITY']) ? $_ENV['SHELL_VERBOSITY'] : $_SERVER['SHELL_VERBOSITY'])) {

0 commit comments

Comments
 (0)