@log4js2/core
Version:
log4js2 is a fast and lightweight logging library that enables logging flexibility within JavaScript/TypeScript applications, similar to Apache's [Log4j2 library](https://logging.apache.org/log4j/2.x/). It can also serve as a drop-in replacement for log4
17 lines (16 loc) • 393 B
TypeScript
import { ILogEvent } from '../log.event';
import { LogAppender } from './log.appender';
export declare class ConsoleAppender extends LogAppender<{}> {
/**
* Appends the log event
* @param {ILogEvent} logEvent
*/
append(logEvent: ILogEvent): void;
/**
* @private
* @function
*
* @param {ILogEvent} logEvent
*/
private _appendToConsole;
}