I have wrapped calls to firebugs console.log in a logging function (that checks for existance of console along with other flags)
for example:
Log(string) { if (console && DEBUG) console.log(string); }
my issue is that the firebug console shows the line number of the console.log function call rather then the Log function call.
Is there any way to change what line numbers firebug shows?