Viewing log messages from Lua hub.debug()

When writing Lua code, I would like to be able to log messages. There is the hub.error(), hub.debug() calls I can make, but I’m not sure where those messages go, they do not appear to go to the console. Is there a way I can access the logs where these messages get sent?

Try this instead :smiley:

In quickapps:
self:debug(“Your Text”)

In scenes:
print(“Your Text”)

1 Like

Very good print() does indeed work and generates debug messages in the console.

2 Likes