-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is the level - log or debug? #13
Comments
FWIW I am asking the Firebug Working Group about this in our discussion group. Sebastian |
Sebastian, any further word on this? |
Hi Brian, Christoph Dorn has made a reply here: https://groups.google.com/forum/#!topic/firebug-working-group/CrUkxpW8pH4 I also have replied: https://groups.google.com/d/msg/firebug-working-group/pR-hRWm5Tsg/t3KxdeAs9A0J Florent |
So the current opinion is to keep Sebastian |
Our conclusion is to keep Sebastian |
I'm not sure that this is a widely agreed upon intent (I've never thought that, for example)... If it is true, it would imply that there shouldn't be code in live sites using console.log? Where is the conceptual level of "log" in relation to trace/debug? Before trace? after trace but before debug? |
Assume all of these levels have associated constants in native code of increasing numeric value. It, might be informative to look at what level log is re: above question - it's hard to explain in terms of "levels" of logging... Is it maybe just "the null level, always logs regardless". |
Firebug actually doesn't use any sort of level. It just categorizes the log messages.
It's of course up to the user whether he uses Sebastian |
Most of the major browser dev tools have a log level called
debug
and have filters for this level, however console.log appears to have differences in what it is considered and what filters it responds to. The only one I can find that explicitly mention say that it is a debug level - however, IE console docs state the inverse (debug is an alias for log) and it provides filters based onlog
not debug.IE's filters appear to be the most complete in terms of levels - it's just disagreement on what that bottom level is called and perhaps based on filters whether log is
unclassified
ordebug
. We should see if we can get agreement by implementers.Thanks @SebastianZ for pointing that out.
The text was updated successfully, but these errors were encountered: