Skip to content

Commit

Permalink
ロギングレベルを変更する
Browse files Browse the repository at this point in the history
  • Loading branch information
rnakagawa16 committed Oct 31, 2023
1 parent 1e96f35 commit 3e12b33
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ springdoc.show-actuator=true
# spring boot actuatorの設定(ステータスの変更,表示情報)
# ヘルスチェックAPIのURLを/apiから始まるように変更する
management.endpoints.web.base-path=/api
# サーバのヘルスチェック用のAPIを設定する(http://localhost:8080/api/health/check)
# サーバのヘルスチェック用の API を設定する(http://localhost:8080/api/health/check)
management.endpoint.health.group.check.include=ping
# データベースのヘルスチェック用のAPIを設定する(http://localhost:8080/api/health/datasource)
management.endpoint.health.group.datasource.include=db
# データベースのヘルスチェック用の API を設定する(http://localhost:8080/api/health/datasource)
management.endpoint.health.group.datasource.include=db

# ヘルスチェックの API のログを検出するため logging level を変更する
logging.level.web=DEBUG

0 comments on commit 3e12b33

Please sign in to comment.