Skip to main content
Known Participant
March 13, 2024
Question

Render logs is not enabling in AE2024, worked fine in 2023

  • March 13, 2024
  • 3 replies
  • 267 views
render = project.renderQueue.items.add(comp)
render.logType = LogType.ERRORS_AND_PER_FRAME_INFO;

Previously in folder where aep file is located subfolder with logs was created.

In 2024 logs subdirectory is not creating...

Is there any way to enable it or it's broken?

This topic has been closed for replies.

3 replies

Known Participant
April 17, 2024

!!!Anybody???

nishu_kush
Community Manager
Community Manager
March 15, 2024

Let us know if Airweb_AE's suggestion helps.

Note: Moving this thread from Bugs to Discussions for troubleshooting.

 

Thanks,

Nishu

Known Participant
March 17, 2024

His "suggestion" has completely same code as i have 😃

Logs should be in same directory where project is saved? Or they been moved? (On cracked 2023 worked fine, on paid Adobe CC 2024 logs are not writing...)

Legend
March 14, 2024

Everything works fine for me:

var proj = app.project;
var thisComp = proj.activeItem;
render = app.project.renderQueue.items.add(thisComp)
render.logType = LogType.ERRORS_AND_PER_FRAME_INFO;