1. 현재 Logger 관련 구성 체크 common/middlewares/logger.middleware 존재 use(req: Request, res: Response, next: NextFunction) { res.on('finish', () => { this.logger.log( `${req.ip}, ${req.originalUrl}, ${req.method}, ${res.statusCode}`, ); }); next(); } 2. Cloud Watch 와 API Logger 구성에 대한 고찰 현재 미들웨어에서 구성을 하려고 작업 진행중 - 현재 시스템에서 많은 변화를 주는 건 부담이 될듯하여, 기존 미들웨어에서 cloudwatch로 Log 보내느 것을 구현하려고함. custom Log 기준 debu..