Files
HKSingleParty/99_references/cf-identity-wallet-main/tests/helpers/logger.ts
2025-05-28 09:55:51 +08:00

17 lines
307 B
TypeScript

import Log4js from 'log4js';
Log4js.configure({
appenders: {
app: { type: "file", filename: "./tests/.logs/test-run.log" },
out: { type: "stdout" },
},
categories: {
default: {
appenders: ["app", "out"],
level: "debug",
},
},
});
export const log = Log4js.getLogger();