Add a group of messages to console sidebar in Chrome

Viewed 61

By any chance is it possible to add a group like "Errors", "Warnings", "Info" into the console and filter my messages by it?

https://developers.google.com/web/tools/chrome-devtools/console/reference

1 Answers

According to the documentation on console, you have several commands for these tasks:

console.error("This is an error");
console.info("This counts as info");
console.warn("This is a warning");
console.log("General logging");

Related