summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2016-12-14 19:05:15 +0100
committerGitHub <noreply@github.com>2016-12-14 19:05:15 +0100
commite9628124f63f5c261b02879803dc68ca5322c2e5 (patch)
treee9f1a97de8bce38a1ca71bb9a1214d7b2447a424 /lib
parent00bd971272efe29b6af75c9301238b9eeff1e45b (diff)
parent9a5401ddd79e3c37e26d60b97d8b23a78d9d9277 (diff)
downloadnextcloud-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.php2
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()
]);