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

Only log as info when we can not create a new DB user
pull/2695/head
Roeland Jago Douma 10 years ago committed by GitHub
commit e9628124f6
  1. 2
      lib/private/Setup/MySQL.php

@ -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()
]);

Loading…
Cancel
Save