By any chance is it possible to add a group like "Errors", "Warnings", "Info" into the console and filter my messages by it?
By any chance is it possible to add a group like "Errors", "Warnings", "Info" into the console and filter my messages by it?
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");