Debug an Extension
This guide covers how to find and fix bugs in your extension.
Console
console.log("Hello World"); // Prints: Hello World
const name = "Thomas";
console.debug(`Hello ${name}`); // Prints: Hello Thomas
const error = new Error("Boom 💥");
console.error(error); // Prints: Boom 💥Visual Studio Code
Unhandled exceptions and Promise rejections

Extension Issue Dashboard

React Developer Tools

Alternative: Global installation of React Developer Tools
Environments
Last updated

