Monitor
From FirebugWiki
Turns on logging for all calls to a function.
This means whenever that function is called, a log message will be created inside the Console Panel showing the function name, the parameters and their values.
Contents |
[edit] Syntax
monitor(fn)
[edit] Parameters
[edit] fn
Function to log calls for. (required)
[edit] Examples
Having the following function:
function faculty(n)
{if (n==1 || n==0)
return 1;
var facNumber = 1;
for (i = 1; i <= n; i++)
facNumber *= i;
return facNumber;
}
monitor(faculty)
This enables logging of calls to the function faculty(). So calling this function like faculty(5), a log message like the following will be created:
faculty(n=5)