9 lines
264 B
TypeScript
Raw Permalink Normal View History

2021-12-06 23:26:38 +08:00
import { getLogger, configure } from "log4js";
configure({
appenders: { cheese: { type: "console" } },
categories: { default: { appenders: ["cheese"], level: "info" } }
});
const logger = getLogger();
logger.level = "debug";
2021-06-21 16:32:10 +08:00
export default logger;