@rudderstack/workflow-engine
Version:
A generic workflow execution engine
16 lines • 639 B
TypeScript
import { LogLevel } from './types';
export declare function getInitialLogLevel(): number;
export declare const debug: (...args: any[]) => void;
export declare const info: (...args: any[]) => void;
export declare const warn: (...args: any[]) => void;
export declare const error: (...args: any[]) => void;
export declare const logger: {
setLogLevel: (newLevel: LogLevel) => void;
getLogLevel: () => LogLevel;
debug: (...args: any[]) => void;
mustLog: (...args: any[]) => void;
info: (...args: any[]) => void;
warn: (...args: any[]) => void;
error: (...args: any[]) => void;
};
//# sourceMappingURL=logger.d.ts.map