You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NathanGloyn edited this page May 26, 2015
·
1 revision
MethodSourceInfo
This object is used by Loupe JavaScript agents to record information about where a message is being logged from.
Definition
The object is very simple:
MethodSourceInfo {
file;
method;
line;
column
}
Creation
To make it easier to use this the loupe namespace has a constructor function on it allowing you
to create a new one by calling new against it providing parameters for the information e.g.
var methodSourceInfo = new loupe.MethodSourceInfo('app.js','init',10,1);