remove trace for now

This commit is contained in:
kepler155c@gmail.com 2019-02-13 20:17:01 -05:00
parent ae6d8e8ebd
commit a36051bf78
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ local function xprun(env, path, ...)
setmetatable(env, { __index = _G })
local fn, m = loadfile(path, env)
if fn then
return trace(fn, ...)
return pcall(fn, ...)
end
return fn, m
end