log4js2
Version:
[](https://travis-ci.org/anigenero/log4js2) [](https://codecov.io/gh/anigenero/log4js2)
23 lines (22 loc) • 527 B
TypeScript
import { LogLevel } from './const/log.level';
import { Method } from './def';
import Marker from './marker';
export interface ILogEvent {
date?: Date;
error?: Error;
logErrorStack?: Error;
file?: string;
filename?: string;
level?: LogLevel;
lineNumber?: string | number;
column?: string;
logger?: string;
marker?: Marker;
message?: string;
method?: Method<any> | Function | 0;
properties?: {
[key: string]: any;
};
relative?: number;
sequence?: number;
}