Forum Discussion
1 Reply
Hi 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;
}