I was able to log entries to the default logging system in houdini with something like this:
import hou entry = hou.logging.LogEntry(message = "--- Logging Test ---") hou.logging.log(entry)
However, while this entry appears in the log panels if I turn on python logging, it does not appear if I call it from husk rendering. In this case I want to see it in a cmdline output from the prerender script. I suppose something like logging to stdout could help, but how do I have to set it up?
Thanks for any hints.