Skip to content

Commit

Permalink
Merge pull request #2750 from nextcloud/backport-2671-reduce-log-leve…
Browse files Browse the repository at this point in the history
…l-on-database-user-creation

[stable11] Only log as info when we can not create a new DB user
  • Loading branch information
MorrisJobke authored Dec 22, 2016
2 parents 40d8025 + c4e93cb commit b03876a
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 b03876a

Please sign in to comment.