diff --git a/main.lua b/main.lua index 2e5a0e5..b320f9a 100644 --- a/main.lua +++ b/main.lua @@ -1,6 +1,6 @@ -- debug -- if os.getenv("LOCAL_LUA_DEBUGGER_VSCODE") == "1" then - DEBUG = true + DEBUG = false -- enable with f10 local lldebugger = require('lldebugger') lldebugger.start() ---@diagnostic disable-next-line: undefined-field @@ -9,7 +9,7 @@ if os.getenv("LOCAL_LUA_DEBUGGER_VSCODE") == "1" then local f = lldebugger.call(run, false, ...) return function(...) return lldebugger.call(f, false, ...) end end -else DEBUG = false end +end print('debug:', DEBUG) -- libraries --