setLogLevel static method

Future<void> setLogLevel(
  1. AlivcLivePushLogLevel level
)

设置Log级别

level Log级别 默认:AlivcLivePushLogLevel.error

Implementation

static Future<void> setLogLevel(AlivcLivePushLogLevel level) async {
  return _liveBaseMethodChannel.invokeMethod(
    'setLogLevel',
    wrapArgs(arg: level.index.toString()),
  );
}