UNPKG

react-native-executorch

Version:

An easy way to run AI models in React Native with ExecuTorch

23 lines (21 loc) 510 B
"use strict"; /* eslint-disable no-console */ export class Logger { static PREFIX = '[React Native ExecuTorch]'; static log(...data) { console.log(Logger.PREFIX, ...data); } static debug(...data) { console.debug(Logger.PREFIX, ...data); } static info(...data) { console.info(Logger.PREFIX, ...data); } static warn(...data) { console.warn(Logger.PREFIX, ...data); } static error(...data) { console.error(Logger.PREFIX, ...data); } } //# sourceMappingURL=Logger.js.map