mirror of
https://github.com/log4js-node/log4js-node.git
synced 2025-12-08 19:26:01 +00:00
382 B
382 B
Standard Error Appender
This appender writes all log events to the standard error stream.
Configuration
type-stderrlayout-object(optional, defaults to colouredLayout) - see layouts
Example
log4js.configure({
appenders: { err: { type: "stderr" } },
categories: { default: { appenders: ["err"], level: "ERROR" } },
});