mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-09-13 12:40:18 +02:00
Check if verbose logging is enabled
This commit is contained in:
parent
654753b70f
commit
0734c7be0a
@ -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…
Reference in New Issue
Block a user