1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-09-13 20:50:18 +02:00

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::$logEnabled = $config->general('logging', false);
} }
self::$verboseLogEnabled = $config->general('verbose_logging', false); self::$verboseLogEnabled = self::isVerboseLoggingEnabled();
// Greetings // Greetings
if ($showGreetings) { 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');
}
} }