Skip to content

Commit e699faf

Browse files
committed
fix runtime error
1 parent 1868f16 commit e699faf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

script/log.lua

+4-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ function m.warn(...)
8585
end
8686

8787
function m.error(...)
88-
return pushLog('error', ...)
88+
-- Don't use tail calls,
89+
-- Otherwise, the count of `debug.getinfo` will be wrong
90+
local msg = pushLog('error', ...)
91+
return msg
8992
end
9093

9194
function m.raw(thd, level, msg, source, currentline, clock)

0 commit comments

Comments
 (0)