UNPKG

ngx-logger

Version:

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

10 lines 555 B
import { INGXLoggerConfig } from '../config/iconfig'; import { INGXLoggerMetadata } from '../metadata/imetadata'; /** * The monitor is called every time the log function is called as long as a log is written (either to the server or to the console) */ export interface INGXLoggerMonitor { /** Function called every time the log function is called as long as a log is written (either to the server or to the console) */ onLog(logObject: INGXLoggerMetadata, config: INGXLoggerConfig): void; } //# sourceMappingURL=ilogger-monitor.d.ts.map