Announcement

Collapse
No announcement yet.

Vraylog save a copy for consult it later

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Vraylog save a copy for consult it later

    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,....

    Some advise or trick?

    bye
    3DKodo
    www.kodocreation.com

  • #2
    The %TEMP% folder should hold the vrayLog.txt file, with all the information you seek.
    Lele
    Trouble Stirrer in RnD @ Chaos
    ----------------------
    emanuele.lecchi@chaos.com

    Disclaimer:
    The views and opinions expressed here are my own and do not represent those of Chaos Group, unless otherwise stated.

    Comment


    • #3
      yes i know, but everytime i start new 3dsmax, vraylog file is reset, then i can find only data from last render made!
      Correct?
      www.kodocreation.com

      Comment


      • #4
        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.

        Code:
        (
            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
            )
        )
        Lele
        Trouble Stirrer in RnD @ Chaos
        ----------------------
        emanuele.lecchi@chaos.com

        Disclaimer:
        The views and opinions expressed here are my own and do not represent those of Chaos Group, unless otherwise stated.

        Comment


        • #5
          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,....?!

          Bye
          3DKodo
          www.kodocreation.com

          Comment


          • #6
            I've create a mcr file for everyone would to download it.
            In customize toolbar: category:"VrayCustom"

            Bye

            Attached Files
            www.kodocreation.com

            Comment


            • #7
              Thank you!
              I *love* proactive, sharing users!
              Lele
              Trouble Stirrer in RnD @ Chaos
              ----------------------
              emanuele.lecchi@chaos.com

              Disclaimer:
              The views and opinions expressed here are my own and do not represent those of Chaos Group, unless otherwise stated.

              Comment

              Working...
              X