Reputation: 11
I am developing a WP8 app, when I run the emulator that use JS code, the console.log is only shown but error and warn aren't.
There are the commands
console.log('This line works');
console.error('This line doesn't work');
console.warn('This line doesn't work');
This is probably a problem with the Verbosity settings which I didn't find.
Any idea?
Upvotes: 1
Views: 454
Reputation: 1025
There are a few buttons at the top of the console, assuming you're referring to the one inside Visual Studio itself. They toggle the various message types Error, Warnings and Messages.
Upvotes: 1