I can't make console.trace give any output. Am I using it wrongly? I'm using Firefox 41.0.1 and Firebug 2.0.12
I've uploaded a test file to neocities <http://definemyhouse.neocities.org/index.html> so you can try it out. This is the content of the test file: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> </head> <body> <script type="text/javascript"> function myFun1 (p1) { var res = myFun2("there"); return res; } function myFun2 (p2) { console.trace(); return "hi there" } console.log("start"); var res = myFun1("hi"); console.log("res: ", res); console.log("end"); </script> </body> </html> -- You received this message because you are subscribed to the Google Groups "Firebug" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/firebug. To view this discussion on the web visit https://groups.google.com/d/msgid/firebug/bfece6c7-3d0e-4032-ab48-3d5211108507%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
