Forum Discussion
TanyaYatskovska
Alumni
13 years agoHi Pravin,
You can create the OnLogWarning event handler and check the value of the MessageText property. For example:
function GeneralEvents_OnLogWarning(Sender, LogParams)
{
if (LogParams.MessageText == "your text")
LogParams.Locked = true;
}