Update: It works fine in Windows 7 (same versions of Firefox and Firebug). Thus the problem only occurs on Ubuntu 14.04
Where should I file this bug? On Tuesday, October 13, 2015 at 9:37:04 AM UTC+2, Jon Loldrup wrote: > > 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/bb740914-9b2b-4501-aefa-650aeb03d4ca%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
