LogManager wx.getLogManager(Object object)

基础库 2.1.0 开始支持,低版本需做兼容处理

获取日志管理器对象。

参数

Object object

属性类型默认值必填说明最低版本
levelnumber0取值为0/1,取值为0表示是否会把 AppPage 的生命周期函数和 wx 命名空间下的函数调用写入日志,取值为1则不会。默认值是 02.3.2

返回值

LogManager

示例代码

  1. const logger = wx.getLogManager({level: 1})
  2. logger.log({str: 'hello world'}, 'basic log', 100, [1, 2, 3])
  3. logger.info({str: 'hello world'}, 'info log', 100, [1, 2, 3])
  4. logger.debug({str: 'hello world'}, 'debug log', 100, [1, 2, 3])
  5. logger.warn({str: 'hello world'}, 'warn log', 100, [1, 2, 3])