打点事件修改

dev_chengFeng
gaoxin 2020-07-25 17:17:34 +08:00
parent 0cca48270d
commit 28a74e529b
1 changed files with 6 additions and 4 deletions

View File

@ -92,10 +92,12 @@ end
-- 打点事件
function this.Track(event, data)
Log("打点事件:"..event)
local dStr = data and _DicToStr(data) or ""
Log("打点数据:"..dStr)
App.TAMgr:Track(event, dStr)
if AppConst.isSDK then
Log("打点事件:"..event)
local dStr = data and _DicToStr(data) or ""
Log("打点数据:"..dStr)
App.TAMgr:Track(event, dStr)
end
end