Hi M.Y. Developers,
I added the lua logging framework found here: http://neopallium.github.io/lualogging/manual.html
For some reason during a debugging session pressing F8 for step over does not work for lines that call the logging framework.
[lua]
require “logging”
local logger = logging.new(function(self, level, message)
print(level, message)
– return true
end)
logger:setLevel (logging.DEBUG)
logger:info(“info line 1”) – Fails to step over here.
logger:info(“info line 2”)
logger:info(“info line 3”)
[/lua]
I am attaching a test project below.
Nathan.