@atomist/sdm
Version:
Atomist Software Delivery Machine SDK
15 lines • 496 B
TypeScript
import { ProgressLog } from "../../spi/log/ProgressLog";
/**
* Progress log to logger, at a desired logging level
*/
export declare class LoggingProgressLog implements ProgressLog {
name: string;
private readonly level;
log: string;
constructor(name: string, level?: "debug" | "info");
write(msg: string, ...args: string[]): void;
isAvailable(): Promise<boolean>;
flush(): Promise<void>;
close(): Promise<void>;
}
//# sourceMappingURL=LoggingProgressLog.d.ts.map