Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 1x 1x 1x | import { ILoggerConfig, ILoggerRedactConfig, ILoggerTransportConfig } from './interface';
export const DEFAULT_CONFIG: ILoggerConfig = {
level: 'debug',
enabled: true,
};
export const DEFAULT_REDACT_CONFIG: ILoggerRedactConfig = {
enabled: true,
censor: '******',
paths: [],
};
export const DEFAULT_TRANSPORT_CONFIG: ILoggerTransportConfig = {
target: 'pino-pretty',
options: {
colorize: true,
singleLine: true,
ignore: 'hostname,pid',
translateTime: 'dd/mm/yyyy HH:MM:ss.l',
},
};
|