使用说明 : 让H5能打客户端log
参数
名称 | 类型 | 必选 | 描述 |
---|---|---|---|
id | string | 是 | 业务ID |
subid | string | 是 | 子业务ID |
content | string | 是 | log内容 |
Example
//让H5能记录客户端log,这样就能直接捞用户侧log了
mqq.invoke("debug","detailLog",{
id:"mp",
subid:"get001",
content:"test detail log"
},function(e){
console.log(e)
});