mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-09-03 03:18: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()
|
||||
{
|
||||
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