Skip to content

Commit

Permalink
Only log as info when we can not create a new DB user
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Dec 19, 2016
1 parent 391f3ea commit c4e93cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Setup/MySQL.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
]);
Expand Down

0 comments on commit c4e93cb

Please sign in to comment.