I can see event plugin logs in the “Job Reports”, but I’m missing one (in this case, Shotgun). I’ve tried tweaking the script to log more in case it’s skipping, and I’ve verified that it is “Global Enabled” in the event config. Is there some lower level way to confirm that an event script got called? Or if it’s not in the Job Reports, did it not get run? And if so, what other things should I check to ensure that it is running?
Thanks!
Make sure you have
from Deadline.Scripting import ClientUtils
and then you can log using;
ClientUtils.LogText(‘Checking job for repathing options…’)
And it should appear in the logs.
Yeah, if there’s no output from the event (you can also use print()
) we won’t log it IIRC.