LUA LOG

来源:互联网 发布:梦想世界跨服传输数据 编辑:程序博客网 时间:2024/06/05 10:05
DEBUGLOG = 1if DEBUGLOG == 1 then__print = printlocal lfs = require("lfs")local logPath = cc.FileUtils:getInstance():getWritablePath()local targetPlatform = cc.Application:getInstance():getTargetPlatform()if targetPlatform <= 3 then    logPath = logPath .. "zjh_log/"lfs.mkdir(logPath)local file = io.open(logPath .. string.gsub(os.date("%X"), "%p", "-") .. ".log", "w+")file:setvbuf("no")print = function ( ... )table.insert(arg, 1, os.date("%X") .. "  ")for i,v in ipairs(arg) dofile:write(  tostring(v) .. " "  )endfile:write("\n")__print( unpack(arg) )endendend

原创粉丝点击