diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-11-10 10:20:57 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-11-10 10:20:57 -0800 |
commit | f86ebf6247e32f014342049b4caa666d22d063c0 (patch) | |
tree | ae822aecbf1b64321fa074fbca210282ee4dec3b | |
parent | a6738b49c4744431e49e075239203f4da7c76de3 (diff) | |
download | view.love-f86ebf6247e32f014342049b4caa666d22d063c0.tar.gz |
clean up a debug print
-rw-r--r-- | app.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app.lua b/app.lua index a2f1f78..f55c866 100644 --- a/app.lua +++ b/app.lua @@ -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('([^:]*):(.*)') |