SFLog说明
getSDKLogDir
接口描述
获取SDK日志路径。
注意事项
无
接口定义
public getSDKLogDir(): string
参数说明
无
返回值
SDK日志路径
示例代码
String dir = SFUemSDK.getInstance().getSFLog().getSDKLogDir();
packLog
接口描述
打包日志到本地
注意事项
日志只会保留最近200M日志
接口定义
public async packLog(zipPath: string): Promise<void>
参数说明
表1 参数说明
参数 | 是否必须 | 类型 | 描述 |
---|---|---|---|
zipPath | 是 | string | 若路径带文件名(.zip结尾),则直接按照该路径输出;否则会创建一个xxx.zip结尾的路径输出。 |
返回值
打包后的路径,返回空表示打包失败
示例代码
const path = "指定的路径/log.zip"; //带.zip结尾,会按照路径输出
const getPath: string = await SFUemSDK.getInstance().getSFLog().packLog(path);