UNPKG

yimultiscreenserver-sdk-web

Version:

YiMultiScreenServer SDK for Web

19 lines 442 B
import { DefaultLogger } from "./DefaultLogger"; export class SDKLog { static setImpl(impl) { if (null === impl) return; SDKLog.impl = impl; } static i(tag, log) { SDKLog.impl.i(tag, log); } static d(tag, log) { SDKLog.impl.d(tag, log); } static e(tag, log) { SDKLog.impl.e(tag, log); } } SDKLog.impl = new DefaultLogger(); //# sourceMappingURL=SDKLog.js.map