@push.rocks/smartlog
Version:
A minimalistic, distributed, and extensible logging tool supporting centralized log management.
10 lines (9 loc) • 396 B
TypeScript
import * as plugins from './smartlog.plugins.js';
import { Smartlog } from './smartlog.classes.smartlog.js';
export declare class LogGroup {
smartlogRef: Smartlog;
transactionId: string;
groupId: string;
constructor(smartlogInstance: Smartlog, transactionIdArg: string);
log(logLevelArg: plugins.smartlogInterfaces.TLogLevel, logMessageArg: string, logDataArg?: any): void;
}