UNPKG

blanc-logger

Version:

Advanced Winston logger for NestJS & TypeORM with structured logging.

9 lines (8 loc) 699 B
/** 주어진 텍스트의 각 줄에 지정된 공백 수만큼 들여쓰기를 적용 */ export declare const indent: (text: string, spaces?: number) => string; /** SQL 쿼리 문자열의 키워드, 숫자, 문자열 및 식별자에 색상 포맷을 적용하여 하이라이트 */ export declare const sqlHighlighter: (sql: string) => string; /** SQL 쿼리의 파라미터 배열을 JSON 문자열로 변환하여 색상 포맷을 적용 */ export declare const formatParameters: (params: unknown[]) => string; /** SQL 쿼리를 분석하여 성능 이슈가 발생할 수 있는 부분에 대한 경고 메시지를 반환 */ export declare const addQueryAnalysis: (query: string) => string;