How can I get debug information when writing event handlers? I am so far unable to get anything to be output. What are the prerequisits for them to trigger any debug information? I have tried normal print statements, and log statements, with logging level set to TRACE. The database I have tried to update using backendless console, API calls and timed triggers. Still no output.
I am trying to write event handlers for database requests. The database requests will be both from triggers (scheduled jobs) and from users interacting with them. At least that is the thinking. When someone updates data in one table, I want to write posts to a changelog table with what has been changed.
Am I better off doing this using funcitons and not bothering with event handlers?