Namespace Log
Log A class to log debugging, and other, information for developers By default, Log outputs to the FirePHP console via X-Wf headers. HOWEVER, if FirePHP is disabled but you're in debug mode, Log messages will print to screen.
| Constructor Attributes | Constructor Name and Description |
|---|---|
Namespace Detail
Log
<?
Log.print('about to test Log');
var a = { hello: 'world' };
Log.groupStart('{hello:"world"}');
Log.print(a);
Log.info(a);
Log.warn(a);
Log.error(a);
Log.groupEnd();
?>
