@push.rocks/smartlog
Version:
A minimalistic, distributed, and extensible logging tool supporting centralized log management.
7 lines (6 loc) • 339 B
TypeScript
import * as plugins from './smartfile-destination-file.plugins.js';
export declare class SmartlogDestinationFile implements plugins.smartlogInterfaces.ILogDestination {
fileWriteStream: plugins.fs.WriteStream;
handleLog(logPackageArg: plugins.smartlogInterfaces.ILogPackage): Promise<void>;
constructor(filePathArg: string);
}