UNPKG

ngx-logger

Version:

[![npm version](https://badge.fury.io/js/ngx-logger.svg)](https://www.npmjs.com/package/ngx-logger)

19 lines 556 B
import { NgxLoggerLevel } from "../types/logger-level.enum"; /** * Content to be logged and some metadata */ export interface INGXLoggerMetadata { /** The message sent to the log function * * If a function was sent, the function is already called */ message?: any; /** The additional params sent to the log function */ additional?: any[]; level: NgxLoggerLevel; timestamp?: string; fileName?: string; lineNumber?: number; columnNumber?: number; } //# sourceMappingURL=imetadata.d.ts.map