250x250
Notice
Recent Posts
Recent Comments
관리 메뉴

탁월함은 어떻게 나오는가?

[NestJS] Winston 사용하여 남는 log 연도/월/일 폴더 구조 생성해서 남기는 방법 본문

[Snow-ball]server/NestJS

[NestJS] Winston 사용하여 남는 log 연도/월/일 폴더 구조 생성해서 남기는 방법

Snow-ball 2024. 2. 22. 21:36
반응형

프로그래밍을 하다보면 log를 기록해야지 좋은 경우가 많다. 그렇기 때문에 나는 NestJS를 사용하는 프로젝트에서는 log를 Winston을 사용하여서 log를 남겨놓는다.

 

기존의 로그를 남기는 방식은 error.log / combined.log / query.log 에 계속적으로 남겨놓는 방식으로 처리를 하였다. 하지만, 로그를 좀 더 간편하게 찾아볼 필요가 있다고 생각이 들어서 연/월/일로 폴더가 생성되고 일자폴더에 규격에 맞게 저장되길 원해서 수정하게 되었다.

 

 

 


 

 

 

적용 코드:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import { WinstonModule } from 'nest-winston';
import * as winston from 'winston';
import { utilities as nestWinstonModuleUtilities } from 'nest-winston/dist/winston.utilities';
 
const now = new Date();
const year = now.getFullYear();
const month = now.getMonth() + 1;
const convertMonth = month < 10 ? `0${month}` : month;
const date = now.getDate();
const YYYY_MM_DD = `${year}/${convertMonth}/${date}`;
const logDir = `${process.cwd()}/logs/${YYYY_MM_DD}`;
 
export const WINSTON_MODULE = {
  logger: WinstonModule.createLogger({
    transports: [
      new winston.transports.Console({
        level: process.env.NODE_ENV === 'production' ? 'error' : 'silly',
        format: winston.format.combine(
          winston.format.timestamp({
            format: new Date().toLocaleString('ko-KR', { hour12: true }),
          }),
          nestWinstonModuleUtilities.format.nestLike(
            'APPLICATION-NAME',
            {
              prettyPrint: true,
            },
          ),
        ),
      }),
      new winston.transports.File({
        filename: 'combined.log',
        level: 'info',
        dirname: `${logDir}/info`,
      }),
      new winston.transports.File({
        filename: 'query.log',
        level: 'warn',
        dirname: `${logDir}/warn`,
      }),
      new winston.transports.File({
        filename: 'errors.log',
        level: 'error',
        dirname: `${logDir}/error`,
      }),
    ],
  }),
};
 
cs

 

 

해당 코드를 적용하면, 하루마다 일자가 추가되는걸 확인할 수 있다.

 

 

 

 

반응형
Comments