By default Houdini prints messages to this floating Houdini Console:
However its content doesn't persist forever. When you print more lines, the oldest lines just disappear.
How could I output the console content to a file so I can have a proper log?
(on Windows)
How to write console output to a file?
359 1 0- raincole
- Member
- 529 posts
- Joined: Aug. 2019
- Offline
- alexwheezy
- Member
- 283 posts
- Joined: Jan. 2013
- Offline
One option is to use stream redirection from stdout to the file.
Or errors from stderr to file.
edit: here's also a way to just set an environment variable HOUDINI_ERRORLOG_FILENAME and the minimum error level HOUDINI_ERRORLOG_LEVEL.
houdini -foreground >> output.log
houdini -foreground 1>>output.log 2>&1
edit: here's also a way to just set an environment variable HOUDINI_ERRORLOG_FILENAME and the minimum error level HOUDINI_ERRORLOG_LEVEL.
Edited by alexwheezy - July 14, 2024 04:54:37
-
- Quick Links