mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-09-08 22:38:56 +02:00
Add ability to set 'verbose_logging' for environment
This commit is contained in:
+3
-1
@@ -306,7 +306,9 @@ class Console
|
|||||||
*/
|
*/
|
||||||
protected static function isVerboseLoggingEnabled()
|
protected static function isVerboseLoggingEnabled()
|
||||||
{
|
{
|
||||||
return self::$config->getParameter('verbose', false) || self::$config->general('verbose_logging');
|
return self::$config->getParameter('verbose', false)
|
||||||
|
|| self::$config->general('verbose_logging')
|
||||||
|
|| self::$config->environmentConfig('verbose_logging', false);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user