added option to override verbose for automated checks
This commit is contained in:
parent
72e9731562
commit
e94819ed7f
|
@ -127,11 +127,16 @@ class DomainController
|
|||
/**
|
||||
* @return bool
|
||||
*/
|
||||
function checkPermissions(): bool
|
||||
function checkPermissions(bool $disableVerbose = false): bool
|
||||
{
|
||||
$setupIsValid = true;
|
||||
$verbose = $this->configController->getConfig(configKey: 'verbose');
|
||||
|
||||
|
||||
if (!$disableVerbose) {
|
||||
$verbose = $this->configController->getConfig(configKey: 'verbose');
|
||||
} else {
|
||||
$verbose = false;
|
||||
}
|
||||
|
||||
$this->logger->debug(message: "checkPermissions()");
|
||||
|
||||
if ($verbose) {
|
||||
|
|
Loading…
Reference in New Issue