Dojo,
Is there a way to suppress (i.e. not show) all information events generated by an automation script ?
Wale Oguntoyinbo [SLC] [DevOps Enabler] Selected answer as best 6th August 2024
Hi Wale,
You can do this by updating the runtime flags.
// To disable the information events:
engine.SetFlag(RunTimeFlags.NoInformationEvents);// To enable the information events:
engine.UnSetFlag(RunTimeFlags.NoInformationEvents);
Wale Oguntoyinbo [SLC] [DevOps Enabler] Selected answer as best 6th August 2024