소스 검색

Merge pull request #2671 from nextcloud/issue-2661-reduce-log-level-on-database-user-creation

Only log as info when we can not create a new DB user
tags/v12.0.0beta1
Roeland Jago Douma 7 년 전
부모
커밋
e9628124f6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      lib/private/Setup/MySQL.php

+ 1
- 1
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()
]);

Loading…
취소
저장