Hi, i’ve a question, is possible to save the vray log file with the render?
…
If i upload for example 5 render on backburner for make these during the night, in the morning i find my renders but i can’t know all information written in the vray log as for example noise threshold value, sampling level reached,…
My bad, i assumed you spoke of an animation (on single machine).
the parameter “.system_vrayLog_file” is a string.
So if you need to name it, you can do so with a pre-render script.
The one attached adds the max filename and the current frame to the log filename, leaving it in the temp folder.
It should be trivial to change this if instead of different frames you have different cameras within the same max file.
(
newLogName=@"%TEMP%\"+getfilenamefile maxFilename+"_f"+currenttime.frame as string+"_VRayLog.txt"
try --V-Ray CPU
(
renderers.current.system_vrayLog_file=newLogName
)
catch --V-Ray GPU
(
renderers.current.V_Ray_settings.system_vrayLog_file=newLogName
)
)
Thanks so much!!i saved it as maxscript and Works!
is the same things of change the name of vraylog in vray setting, i’ve tryed it before but in the same time i’ve changed the folder where save the file and it not works!
Thanks and i think it is a simple but interesting update to implement in future release of vray,…?!