Can I write to the Build Log directly from within a script?
It would help if I could write certain values to the build log as the script is run so that I could see exactly what the script did later.
Thanks
Paul
Hi Paul,
If you’re using an action script event (ie the script editor in FinalBuilder), you can send log messages like this:
VBScript: Action.SendLogMessage "My Log Message Goes Here"
JScript: Action.SendLogMessage(“My Log Message Goes Here”);
If you’re using Action Studio, the method from a custom action is Context.SendMessage()
Regards,
Angus
Perfect! Thanks so much for your help.
Knew there had to be a way to do it, but missed it in the documentation.
Thanks again.
If you want to log variable values, you can also use the aptly-named “Log Variable Values” action
Steve