Configuration
![[NestJs] 따라하면서 배우는 NestJs - 9 (로그, 설정)](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2Fbl58Rq%2FbtrGRiMuXTa%2FAAAAAAAAAAAAAAAAAAAAAFImEoc5OAMtO_CYtgnQaBOdEKVk43Ip8j5GBZ9FT8ez%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DAMKbeJT%252B4PBo2SqQHLRg7iCWdl0%253D)
[NestJs] 따라하면서 배우는 NestJs - 9 (로그, 설정)
✅ Logger 모듈 추가 📝./src/main.ts import { Logger } from '@nestjs/common'; import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; async function bootstrap() { const logger = new Logger(); const port = 3000; const app = await NestFactory.create(AppModule); await app.listen(port); logger.log(`Application running on port ${port}`); } bootstrap(); expressjs 에서는 Winston 모듈을..