欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 社会 > 【封装小程序log,设定层级】

【封装小程序log,设定层级】

2024/11/6 21:35:30 来源:https://blog.csdn.net/weixin_45483535/article/details/143283760  浏览:    关键词:【封装小程序log,设定层级】
// utils/logger.js
const log = wx.getRealtimeLogManager ? wx.getRealtimeLogManager() : null; // 手机端点击投诉可以在平台看到日志const levels = {DEBUG: 'debug', // 开发和调试阶段使用INFO: 'info', // 记录程序正常运行情况WARN: 'warn', // 记录程序运行出现的潜在问题ERROR: 'error' // 程序运行过程出现严重错误
};const prefixes = {DEBUG: '[DEBUG]',INFO: '[INFO]',WARN: '[WARN]',ERROR: '[ERROR]'
};class Logger {constructor(level = levels.INFO) {this.level = level;}setLevel(level) {this.level = level;}log(level, ...args) {if (this.shouldLog(level)) {const timestamp = new Date().toLocaleString();const prefix = prefixes[level.toUpperCase()] || '';const logMessage = `[${timestamp}] ${prefix} ${args.join(' ')}`;console.log(logMessage);this.sendToRealtimeLog(level, ...args);}}debug(...args) {this.log(levels.DEBUG, ...args);}info(...args) {this.log(levels.INFO, ...args);}warn(...args) {this.log(levels.WARN, ...args);}error(...args) {this.log(levels.ERROR, ...args);}shouldLog(level) {const levelOrder = [levels.DEBUG, levels.INFO, levels.WARN, levels.ERROR];return levelOrder.indexOf(level) >= levelOrder.indexOf(this.level);}sendToRealtimeLog(level, ...args) {if (!log) {return;}switch (level) {case levels.INFO:log.info.apply(log, args);break;case levels.WARN:log.warn.apply(log, args);break;case levels.ERROR:log.error.apply(log, args);break;default:log.debug ? log.debug.apply(log, args) : log.info.apply(log, args);break;}}setFilterMsg(msg) {if (!log || !log.setFilterMsg) {return;}if (typeof msg !== "string") {return;}log.setFilterMsg(msg);}addFilterMsg(msg) {if (!log || !log.addFilterMsg) {return;}if (typeof msg !== "string") {return;}log.addFilterMsg(msg);}
}const logger = new Logger(levels.DEBUG); // 默认日志级别为 DEBUGexport default logger;
export { levels };

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com