fix(cli): remove noisy theme registration logs from terminal (#25858)

Co-authored-by: Jack Wotherspoon <jackwoth@google.com>
This commit is contained in:
JAYADITYA
2026-05-09 01:29:33 +05:30
committed by GitHub
parent 014bfeb89b
commit 9d0860bd0f
@@ -206,7 +206,6 @@ class ThemeManager {
try {
const theme = createCustomTheme(themeWithDefaults);
this.extensionThemes.set(namespacedName, theme);
debugLogger.log(`Registered theme: ${namespacedName}`);
} catch (error) {
debugLogger.warn(
`Failed to load custom theme "${namespacedName}":`,
@@ -237,7 +236,6 @@ class ThemeManager {
for (const theme of customThemes) {
const namespacedName = `${theme.name} (${extensionName})`;
this.extensionThemes.delete(namespacedName);
debugLogger.log(`Unregistered theme: ${namespacedName}`);
}
}