Skip to content

Commit

Permalink
health체크 - 로그 연속으로 오는거 막기 위한 테스트-03
Browse files Browse the repository at this point in the history
  • Loading branch information
codesejin committed Jul 24, 2023
1 parent 50a8f73 commit 4e8c78e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class AppController {
@Get('/health')
getHealth(): { statusCode: number; data: string } {
const logger = new Logger('application.app.controller')
logger.debug('Health check', '서비스 정상 동작 확인')
logger.warn('Health check', '서비스 정상 동작 확인')
return { statusCode: 200, data: 'Health check passed!' };
}
}
Expand Down

0 comments on commit 4e8c78e

Please sign in to comment.