@observertc/observer-js
Version:
Server Side NodeJS Library for processing ObserveRTC Samples
17 lines • 645 B
TypeScript
export interface Logger {
trace(...args: any[]): void;
debug(...args: any[]): void;
info(...args: any[]): void;
warn(...args: any[]): void;
error(...args: any[]): void;
}
export interface ObserverLogger {
trace(module: string, ...args: any[]): void;
debug(module: string, ...args: any[]): void;
info(module: string, ...args: any[]): void;
warn(module: string, ...args: any[]): void;
error(module: string, ...args: any[]): void;
}
export declare function createLogger(moduleName: string): Logger;
export declare function setObserverLogger(logger: ObserverLogger): void;
//# sourceMappingURL=logger.d.ts.map