get-logs 接口
获取系统日志列表,系统最多记录最近 1000 条数据,仅管理员有权限。
请求方式
GET http://ip/usapi?method=get-logs&types=all
参数 | 说明 |
---|---|
method | 方法名称:get-logs |
types | 日志类型,有效值:all、info、warn、error,当有多个类型时用英文逗号隔开。 |
返回数据
{
"result": 0
"logs:[
{
"type": "warn",
"time": "2022-03-19 09:53:03.047",
"message": "USB state: disconnected"
},
...
]"
}
属性 | 说明 |
---|---|
result | 返回状态。 0:操作成功, 返回其它值请参考 API 状态码 |