diff options
author | Joas Schilling <coding@schilljs.com> | 2016-12-14 14:06:14 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-12-14 14:06:14 +0100 |
commit | 9a5401ddd79e3c37e26d60b97d8b23a78d9d9277 (patch) | |
tree | 0bcc5e0b4bfdb17a367e49874c630ada815d9070 /lib/private/Setup | |
parent | cd1929382ff38f321df59b17962016496b22104c (diff) | |
download | nextcloud-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.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() ]); |