change log format

This commit is contained in:
Matt Low 2021-03-14 21:05:12 -06:00
parent ad87772da9
commit a78faf5a7c

View File

@ -1,10 +1,16 @@
import PhoneNumber from "awesome-phonenumber"; import PhoneNumber from "awesome-phonenumber";
import winston from "winston"; import winston, { format } from "winston";
export const DEBUG = !!process.env.DEBUG; export const DEBUG = !!process.env.DEBUG;
export const logger = winston.createLogger({ export const logger = winston.createLogger({
level: DEBUG ? "debug" : process.env.LOG_LEVEL ?? "info", level: DEBUG ? "debug" : process.env.LOG_LEVEL ?? "info",
transports: [new winston.transports.Console()], transports: [new winston.transports.Console()],
format: format.combine(
format.timestamp(),
format.printf(
({ level, message, timestamp }) => `${timestamp} [${level}]: ${message}`
)
),
}); });
export function getNationalNumber(input: string) { export function getNationalNumber(input: string) {