Merge pull request #2750 from nextcloud/backport-2671-reduce-log-level-on-database-user-creation

[stable11] Only log as info when we can not create a new DB user
This commit is contained in:
Morris Jobke 2016-12-22 14:33:41 +01:00 committed by GitHub
commit b03876ac41
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ class MySQL extends AbstractDatabase {
};
}
} catch (\Exception $ex) {
$this->logger->error('Specific user creation failed: {error}', [
$this->logger->info('Can not create a new MySQL user, will continue with the provided user: {error}', [
'app' => 'mysql.setup',
'error' => $ex->getMessage()
]);