1

I'm not exactly sure when it started happening, roughly the last week or so, but Chrome no longer seems to print my console.log statements. I've included a screenshot where on the console I type console.log('hello world'), and it simply prints undefined. This is occuring on my Mac, Chrome Version 29.0.1547.65. This exact same test on my Windows machine (Chrome version 29.01547.66 m) produces the output

hello world
undefined

I don't believe I have any filtering turned on or am doing anything differently than I was roughly a week ago. Thanks for any suggestions in advance.

enter image description here

Bradley Bossard
  • 2,439
  • 2
  • 23
  • 30

2 Answers2

4

click in the funnel and make sure you have Logging checked

enter image description here

Orlando
  • 9,374
  • 3
  • 56
  • 53
  • 1
    Thanks so much, this fixed it for me. I tried the 'Javascript' check, guess I should have tried Logging as well. Not sure how these checks got turned off, but thanks so much for the help. – Bradley Bossard Sep 12 '13 at 23:13
3

In my case the problem was Firebug Lite, which I thought I wasn't using at the moment (it was collapsed).

Open Firebug Lite and check off "Override Console Object".

Then the native Chrome console will receive messages again, and Firebug's console won't (like it couldn't print on both at the same time; go figure).

enter image description here

Martin Jambon
  • 4,629
  • 2
  • 22
  • 28