Where do console.log() messages go?

I’m noodling around in the console and trying to debug some stuff. To my surprise, console.log() does not seem to log to the console! What is going on?
This code for example, which I typed into the Developer console.

Shouldn’t I see “ehlo” on the next line of the console? Are these messages going somewhere else?
Thanks as usual for any help!

Solution

I found it.
Perhaps by default, the console applies filters to the output. Just need to enable all output to get all messages…

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.