Skip to content

Commit

Permalink
Merge pull request #50 from plus-tdd/feature/alarm
Browse files Browse the repository at this point in the history
health체크 - 로그 연속으로 오는거 막기 위한 테스트-03
  • Loading branch information
codesejin authored Jul 24, 2023
2 parents 0981985 + 4e8c78e commit bb5b3eb
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 bb5b3eb

Please sign in to comment.