diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2016-12-14 19:05:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-14 19:05:15 +0100 |
commit | e9628124f63f5c261b02879803dc68ca5322c2e5 (patch) | |
tree | e9f1a97de8bce38a1ca71bb9a1214d7b2447a424 /lib | |
parent | 00bd971272efe29b6af75c9301238b9eeff1e45b (diff) | |
parent | 9a5401ddd79e3c37e26d60b97d8b23a78d9d9277 (diff) | |
download | nextcloud-server-e9628124f63f5c261b02879803dc68ca5322c2e5.tar.gz nextcloud-server-e9628124f63f5c261b02879803dc68ca5322c2e5.zip |
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
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Setup/MySQL.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Setup/MySQL.php b/lib/private/Setup/MySQL.php index d1399c8821c..dd88e2ccac6 100644 --- a/lib/private/Setup/MySQL.php +++ b/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() ]); |