Mojo.Log

From WebOS101

Revision as of 16:48, 20 January 2010 by Teamkde (Talk | contribs)
(diff) ← Older revision | Current revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Logging Errors and Info

Logging Information Messages and Errors

// Logging an information message
Mojo.Log.info('Your log messsage here');
 
// Logging errors
try {
// Some code here
}
catch(error)
{
Mojo.Log.error('Error Code: ' + error.code + ' Error Message: ' + error.message);
}
Personal tools