You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I am making some changes to the monitor and I was wondering if there is any useful API for debugging it. I am mainly working on the hook part.
Thank you
The text was updated successfully, but these errors were encountered:
As far as I know there is no API to debug the monitor. You can debug-print it in two ways:
compiling the project using ./make-debug.sh (it's in the root of the project). This will allow you to debug-print using log_debug("you message here")
Using pipe("INFO:your message here") in the code (you can change the level of course)
Depending on your choice:
In the first case all the log_debug messages will be printed to the file related to the process being debugged (the file will be uploaded to the Results Server as a dropped file)
In the second case you'll find the debug prints in the live analysis.log file.
Hello,
I am making some changes to the monitor and I was wondering if there is any useful API for debugging it. I am mainly working on the hook part.
Thank you
The text was updated successfully, but these errors were encountered: