Hi. Is it possible to see content of table in debugger? All I get for table variables is something like
event = table: 07728390
thanks
Hi. Is it possible to see content of table in debugger? All I get for table variables is something like
event = table: 07728390
thanks
Not in the current version. It’s on my list of things to add.
One easy way to print tables for debugging is:
local json = require "json" print(json.encode(myTable, { indent=true } ))
Cool, thanks!
Not in the current version. It’s on my list of things to add.
One easy way to print tables for debugging is:
local json = require "json" print(json.encode(myTable, { indent=true } ))
Cool, thanks!