Skip to content

Commit d69d571

Browse files
committed
Change default log level for output streams
1 parent e9c8e19 commit d69d571

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)