compressLogs method
压缩 log 文件,并返回压缩后的文件路径。强烈建议方法完成之后删除该压缩文件。
Return 压缩后的 log 文件路径。
Throws 如果有异常会在这里抛出,包含错误码和错误描述,详见 EMError。
Implementation
Future<String> compressLogs() async {
EMLog.v('compressLogs:');
Map result = await ClientChannel.invokeMethod(ChatMethodKeys.compressLogs);
try {
EMError.hasErrorFromResult(result);
return result[ChatMethodKeys.compressLogs];
} on EMError catch (e) {
throw e;
}
}