Dojo,
Is it possible to control the severity of a failed set in SRM ?
In this instance I would like the severity to be lower than Critical which seems to be the default severity on any failure.
Hi Wale,
Yes, it's possible to add custom messages and select the desired severity level.
You can use the ProfileParameterEntryHelper to achieve this. The helper includes a Log method (Log(message, type) - see below), which allows you to add a custom message along with the severity.
The supported severity levels are:
Practical example:
yourHelper.Log("I found an exception here", LogEntryType.Info);
I hope this helps!
Kind regards,