{"version":3,"sources":["../../src/logger/constants.ts"],"names":["LOGGER_LEVELS","SENSITIVE_DATA","LOGGER_TRANSPORT_CONFIGURATION"],"mappings":";AACO,IAAMA,CAAAA,CAAgB,CAC3B,KAAA,CAAO,EAAA,CACP,MAAO,EAAA,CACP,IAAA,CAAM,EAAA,CACN,IAAA,CAAM,GACN,KAAA,CAAO,EAAA,CACP,KAAA,CAAO,EACT,EAGaC,CAAAA,CAAiB,CAAC,OAAA,CAAS,UAAA,CAAY,QAAA,CAAU,OAAA,CAAS,QAAA,CAAU,KAAK,EAEzEC,CAAAA,CAAiC,CAC5C,CACE,MAAA,CAAQ,cACR,OAAA,CAAS,CACP,QAAA,CAAU,IACZ,CACF,CACF","file":"index.cjs","sourcesContent":["// levels of the loggers\nexport const LOGGER_LEVELS = {\n  trace: 10,\n  debug: 20,\n  info: 30,\n  warn: 40,\n  error: 50,\n  fatal: 60,\n};\n\n// Sensitive fields excluded from logs\nexport const SENSITIVE_DATA = ['email', 'password', 'wallet', 'token', 'secret', 'ssn'];\n\nexport const LOGGER_TRANSPORT_CONFIGURATION = [\n  {\n    target: 'pino-pretty',\n    options: {\n      colorize: true,\n    },\n  },\n];\n"]}