mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-09-13 12:40:18 +02:00
Add ability to set 'verbose_logging' for environment
This commit is contained in:
parent
0734c7be0a
commit
d63d105471
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user