The
CodePudding user response:
Make sure you don't have anything in the console's filter input field
CodePudding user response:
I'm not sure why your code is not printing the console.log()
since it's something basic and does not require any specific configuration.
I've tested your repro and it's working perfectly fine on both Chrome and Firefox. Maybe try another browser, factory reset it or ask a buddy to try on their side.
This is something on your machine IMO.
Also, be aware of the filter on top of the console, be sure that nothing is present here, otherwise it could filter the things you see in the actual console.
CodePudding user response:
In your Browser you have a Console Output
Section, where you also have some settings. There you can set the log levels, which should be in your output (Verbose, Info, Warnings and Errors). Console.logs
are logged under the level Verbose
, so you have to make sure this option is checked. By default this option is unchecked in some cases.