From c4e93cbb49ee7a59743edb598d863720f02e4314 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 1a3119807d0c4..bafb3866b7623 100644 --- a/lib/private/Setup/MySQL.php +++ b/lib/private/Setup/MySQL.php @@ -152,7 +152,7 @@ private function createSpecificUser($username, $connection) { }; } } 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() ]);