22 lines
652 B
TypeScript
22 lines
652 B
TypeScript
import { Logger } from "tslog";
|
|
|
|
import { IS_PRODUCTION } from "./constants";
|
|
|
|
const logger = new Logger({
|
|
minLevel: !!process.env.NEXT_PUBLIC_DEBUG ? "debug" : "warn",
|
|
dateTimePattern: "hour:minute:second.millisecond",
|
|
displayFunctionName: false,
|
|
displayFilePath: "hidden",
|
|
dateTimeTimezone: IS_PRODUCTION ? "utc" : Intl.DateTimeFormat().resolvedOptions().timeZone,
|
|
prettyInspectHighlightStyles: {
|
|
name: "yellow",
|
|
number: "blue",
|
|
bigint: "blue",
|
|
boolean: "blue",
|
|
},
|
|
maskValuesOfKeys: ["password", "passwordConfirmation", "credentials", "credential"],
|
|
exposeErrorCodeFrame: !IS_PRODUCTION,
|
|
});
|
|
|
|
export default logger;
|