typescript-logging
Version:
Library for logging, written in typescript, can be used by normal es5+ javascript as well.
10 lines (9 loc) • 431 B
TypeScript
import { AbstractLogger, LogMessage } from "./AbstractLogger";
import { LogGroupRuntimeSettings } from "./LogGroupRuntimeSettings";
/**
* Simple logger, that logs to the console. If the console is unavailable will throw exception.
*/
export declare class ConsoleLoggerImpl extends AbstractLogger {
constructor(name: string, logGroupRuntimeSettings: LogGroupRuntimeSettings);
protected doLog(message: LogMessage): void;
}