From 9a5401ddd79e3c37e26d60b97d8b23a78d9d9277 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 14 Dec 2016 14:06:14 +0100 Subject: [PATCH] Only log as info when we can not create a new DB user Signed-off-by: Joas Schilling --- lib/private/Setup/MySQL.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/Setup/MySQL.php b/lib/private/Setup/MySQL.php index d1399c8821..dd88e2ccac 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() ]);