I have a log4js configuration like the following (from the docs):
log4js.configure({
appenders: {
everything: { type: "file", filename: "all-the-logs.log" },
},
categories: {
default: { appenders: ["everything"], level: "debug" },
},
});
const logger = log4js.getLogger();
and when I log something, like so:
logger.debug("hello there!")
the word "default" is placed in front of all my logs, like so:
[2022-08-18T21:59:36.225] [DEBUG] default - hello there!
Is there a way to remove this? Thank you!