Browse Source

Check if verbose logging is enabled

1.0
Kuba Turek 10 years ago
parent
commit
0734c7be0a
  1. 11
      Mage/Console.php

11
Mage/Console.php

@ -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');
}
} }

Loading…
Cancel
Save