summaryrefslogtreecommitdiffstats
path: root/lib/private/Setup
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-12-14 14:06:14 +0100
committerJoas Schilling <coding@schilljs.com>2016-12-14 14:06:14 +0100
commit9a5401ddd79e3c37e26d60b97d8b23a78d9d9277 (patch)
tree0bcc5e0b4bfdb17a367e49874c630ada815d9070 /lib/private/Setup
parentcd1929382ff38f321df59b17962016496b22104c (diff)
downloadnextcloud-server-9a5401ddd79e3c37e26d60b97d8b23a78d9d9277.tar.gz
nextcloud-server-9a5401ddd79e3c37e26d60b97d8b23a78d9d9277.zip
Only log as info when we can not create a new DB user
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Setup')
-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()
]);