Define Redshift log level when submitting houdini job

Hi,

I’m sending houdini-redshift job to deadline but redshift don’t output any progression log and deadline cannot display the %% of each frame.
redshift staff say that the log level must be set to ‘Debug’ in order to get the progression of the currently rendered frame.
where and how can I setup deadline so it execute this line when launching hython.exe ?

hou.hscript("Redshift_setLogLevel -L 5");

thanks you very much !

Looking at the “Hrender_dll,py” plugin file under repo/plugin/Houdini, you have to add the redshift debug log level code somewhere after code line #730. This is the code you have to add:

hou.hscript("Redshift_setLogLevel -L 5");

The Redshift ROP code starts from line #730. Add this code after that and see if that been respected.

Thanks
Karpreet