更新时间:2025-01-09 GMT+08:00
分享

配置日志参数

modifyLogConfiguration

接口描述

该接口用于配置日志参数:日志路径、日志保存天数。

注意事项

该接口非必需调用,若不设置,则使用默认值。

方法定义

modifyLogConfiguration(path: string, logKeepDays?: number): SDKERR;

参数描述

表1 参数说明

参数

是否必须

类型

描述

path

string

保存路径。

logKeepDays

number

日志保存天数,输入有效范围为3-30,默认值0。0为不按天数删除日志。

返回值

表2 返回值

类型

描述

SDKERR

接口调用结果,HWM_SDKERR_SUCCESS表示成功,详细请参考错误码参考

示例代码

1
2
3
4
5
6
7
8
9
/**
*  配置日志参数:修改日志保存路径
*/
handleModifyLogConfiguration(): void {
    const newLogPath: string = this.getLogPath();
    const result: SDKERR = UISDK.getConfigApi().modifyLogConfiguration(newLogPath);
    const message: string = result === SDKERR.HWM_SDKERR_SUCCESS ? '修改日志路径成功' : '修改日志路径失败';
    console.log(message);
}

相关文档