Example: lr.log_message
The following example sends an error message to the log file when it fails.
public int login(string username, string password)
{
//emulate failed login
return lr.FAIL;
}
int status = login("username","password");
if (status == lr.FAIL) {
string strOutputMsg="Error: Unable to login to server";
lr.log_message(strOutputMsg);
}