clean up a debug print

This commit is contained in:
Kartik K. Agaram 2023-11-10 10:20:57 -08:00
parent a6738b49c4
commit f86ebf6247
1 changed files with 0 additions and 1 deletions

View File

@ -63,7 +63,6 @@ end
-- This function cleans out this cruft from error callstacks.
function clean_up_callstack(callstack)
local frames = {}
print(callstack)
for frame in string.gmatch(callstack, '[^\n]+\n*') do
local line = frame:gsub('^%s*(.-)\n?$', '%1')
local filename, rest = line:match('([^:]*):(.*)')