setLogConfig static method

Future<void> setLogConfig(
  1. ZegoLogConfig config
)

设置日志配置。

支持版本:2.3.0 及以上。 详情描述:开发者当需要自定义日志文件大小和路径时,需要调用此函数来完成配置。 调用时机:必须在调用 createEngine 之前设置才生效,若在 createEngine 之后设置,则在 destroyEngine 后的下一次 createEngine 时生效。 使用限制:无。 注意事项:一旦调用了本接口,通过 setEngineConfig 设置日志大小和路径的方式将无效。因此,不建议使用setEngineConfig 设置日志大小和路径 。

  • config 日志配置。

Implementation

static Future<void> setLogConfig(ZegoLogConfig config) async {
  return await ZegoExpressImpl.setLogConfig(config);
}