info method

  1. @override
void info(
  1. dynamic msg, {
  2. String? ext1,
  3. String? ext2,
  4. String? ext3,
})
inherited

白名单日志上报,msg支持所有primitive type, 支持map,支持list, 但是不支持用户自定义的object,如传入自定义object,必须在class内提供对应的toJson方法 info('info msg'); info('info1', 'info2'); info({'key':'value'});

Implementation

@override
void info(
  dynamic msg, {
  String? ext1,
  String? ext2,
  String? ext3,
}) {
  _normalLogPipeline(_buildNormalLog(
    msg,
    LogType.info,
    ext1: ext1 ?? config.ext1,
    ext2: ext2 ?? config.ext2,
    ext3: ext3 ?? config.ext3,
  ));
}