本帖最后由 1974199655 于 2021-8-16 16:01 编辑
- function errorReport(info,isStop)--逻辑错误报告,info是附加信息,isStop是否以error的形式报错,否为直接打印
- local pt= getOSType()
- if isPriviateMode()==1 then
- pt=pt.."越狱/Root"
- else
- pt=pt.."免越狱/免Root"
- end
- if getProduct then
- if getProduct()==7 then pt=pt.."(酷玩)" end
- end
- local w,h = getScreenSize()
- local ScreenSize=w.."_"..h
- local str=string.format("%s\r\n===系统信息===\r\n手机分辨率:%s\r\npt:%s\r\n引擎版本号%s\r\n请反馈给作者附加信息和发生错误的具体情况!",info,ScreenSize,pt,getEngineVersion())
- if isStop then error(str,0) end
- print(str)
- end
复制代码
|