diff --git a/lib/Settings/BetaUserSetting.php b/lib/Settings/BetaUserSetting.php index 79c6b95cc607a5391d8b326ececf8b30a8862be5..0b1301a2c94c2b6ad883e901c1d6637d87ce7a4b 100644 --- a/lib/Settings/BetaUserSetting.php +++ b/lib/Settings/BetaUserSetting.php @@ -47,12 +47,12 @@ class BetaUserSetting implements ISettings { public function getSection(): ?string { $betaGroupName = $this->config->getSystemValue("beta_group_name"); if (empty($betaGroupName)) { - $this->logger->warning('Beta group name is not set in config.php', ['app' => 'ecloud-accounts']); + $this->logger->debug('Beta group name is not set in config.php', ['app' => 'ecloud-accounts']); return null; } $groupExists = $this->groupManager->groupExists($betaGroupName); if (! $groupExists) { - $this->logger->warning('Beta group does not exist!', ['app' => 'ecloud-accounts']); + $this->logger->debug('Beta group does not exist!', ['app' => 'ecloud-accounts']); return null; } return 'beta-user';