Check if verbose logging is enabled

This commit is contained in:
Kuba Turek 2014-11-11 20:34:50 +01:00
parent 654753b70f
commit 0734c7be0a

View file

@ -113,7 +113,7 @@ class Console
self::$logEnabled = $config->general('logging', false);
}
self::$verboseLogEnabled = $config->general('verbose_logging', false);
self::$verboseLogEnabled = self::isVerboseLoggingEnabled();
// Greetings
if ($showGreetings) {
@ -300,4 +300,13 @@ class Console
}
}
/**
* Check if verbose logging is enabled
* @return boolean
*/
protected static function isVerboseLoggingEnabled()
{
return self::$config->getParameter('verbose', false) || self::$config->general('verbose_logging');
}
}