import { ISDKLogger } from "./ISDKLogger";

export class DefaultLogger implements ISDKLogger {

    i(tag: string, log: string): void {
        console.info("[" + tag + "] " + log);
    }

    d(tag: string, log: string): void {
        console.debug("[" + tag + "] " + log);
    }

    e(tag: string, log: string): void {
        console.error("[" + tag + "] " + log);
    }

}