lua-debug
lua-debug copied to clipboard
Outputting to "internalConsole" doesn't work in versions 2.0.6+
Using the console output setting (lua.debug.settings.console) as internalConsole
will only reliably work in Lua Debug v2.0.5.
While using "Run File", there are a couple issues that can occur:
- The console will only output the program once after a handful of tries.
- Attempting to run the file again will briefly open and close a console window, but no output will be displayed.
- If you're lucky, there will be an output displayed, roughly every 1/10 tries, but often less than this.
- The output is often incomplete.
- Trying running this code:
for i = 1, 10 do print(i) end
- This should print a list of numbers from 1-10, however, when/if the output is displayed, only1
is printed.