17 lines
307 B
TypeScript
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();
|