Example: lr.log

The following example sends an error message to the log file after a failed login.

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(strOutputMsg);

}