import * as pino from 'pino'; import { Writable } from 'stream'; /** * Expose log type so functions that do not have direct access to pino have access to the log type */ export declare type LogType = pino.Logger; /** * Encapsulate the logger so that it can be swapped out */ export declare const LogConfig: { /** Get the currently configured logger */ get(): pino.Logger; set(log: pino.Logger): void; /** Overwrite the logger with a new logger that outputs to the provided stream*/ setOutputStream(stream: Writable): void; /** Disable the logger */ disable(): void; }; //# sourceMappingURL=log.d.ts.map