配置日志参数
modifyLogConfiguration
接口描述
该接口用于配置日志参数:日志路径、日志保存天数。
注意事项
该接口非必需调用,若不设置,则使用默认值。
方法定义
modifyLogConfiguration(path: string, logKeepDays?: number): SDKERR;
参数描述
参数 |
是否必须 |
类型 |
描述 |
---|---|---|---|
path |
是 |
string |
保存路径。 |
logKeepDays |
否 |
number |
日志保存天数,输入有效范围为3-30,默认值0。0为不按天数删除日志。 |
返回值
类型 |
描述 |
---|---|
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); } |