@eyevinn/iaf-plugin-aws
Version:
Eyevinn Ingest Application Framework (IAF) plugin for upload and transcode in AWS
15 lines (14 loc) • 365 B
TypeScript
import { Logger } from "eyevinn-iaf";
export default class AbstractLogger implements Logger {
colors: {
error: string;
info: string;
warn: string;
verbose: string;
};
private logger;
verbose(message: string): void;
info(message: string): void;
warn(message: string): void;
error(message: string): void;
}