Hi Dojo,
I'm building some Low Code Apps and need a way to log information for debugging purposes, providing additional information, etc.
Not sure if there already something that I can reuse? If not, I'm eager to build something myself, but I'm looking for some best practices input since I can think of a few approaches to make this available:
- store logging in logger tables (make use of aliases for each application)
- store the data in separate files (like done for the SRM framework)
- make the data for each application individually available in DOM
- create 1 DOM module for logging purposes
Hey Jens,
The best approach really depends on what exactly you want to log. However, in most cases, I personally recommend using logger tables. This helps avoid problems related to files and synchronization. Although using DOM is an option, I think it may be excessive if you're only interested in basic logging.