about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-11-10 10:20:57 -0800
committerKartik K. Agaram <vc@akkartik.com>2023-11-10 10:20:57 -0800
commitf86ebf6247e32f014342049b4caa666d22d063c0 (patch)
treeae822aecbf1b64321fa074fbca210282ee4dec3b
parenta6738b49c4744431e49e075239203f4da7c76de3 (diff)
downloadlines.love-f86ebf6247e32f014342049b4caa666d22d063c0.tar.gz
clean up a debug print
-rw-r--r--app.lua1
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('([^:]*):(.*)')