@fengxi/ui-framework
Version:
Cocos Creator UI框架库 类似鸿蒙的UI框架
22 lines (21 loc) • 465 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Logger = void 0;
class Logger {
constructor(tag) {
this.tag = tag;
}
log(...args) {
console.log(this.tag, ...args);
}
info(...args) {
console.info(this.tag, ...args);
}
warn(...args) {
console.warn(this.tag, ...args);
}
error(...args) {
console.error(this.tag, ...args);
}
}
exports.Logger = Logger;