Forum Discussion
Tom_E
13 years agoOccasional Contributor
Well, I added a general event and the following:
GeneralEvents_OnLogEvent(Sender, LogParams)
(.Find(LogParams.StrEx,"Password",)!=-1)
This seems to work and is simpler than using secure storage. Do you see anything wrong with this approach?
Thanks,
Tom
function GeneralEvents_OnLogEvent(Sender, LogParams)
GeneralEvents_OnLogEvent(Sender, LogParams)
{
if(aqString.Find(LogParams.StrEx,"Password",false)!=-1)
(.Find(LogParams.StrEx,"Password",)!=-1)
{
LogParams.Str= "The password was entered in the text editor.";
}
}
This seems to work and is simpler than using secure storage. Do you see anything wrong with this approach?
Thanks,
Tom