TRTCLog static method

void TRTCLog(
  1. String tag,
  2. String body, {
  3. int level = 0,
})

Implementation

static void TRTCLog(String tag, String body, {int level = 0}) {
  TRTCCloudNative.instance.writeLog(level, "tencent_rtc_sdk", tag, body);
}