File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ let extensionContext: vscode.ExtensionContext
4242// Your extension is activated the very first time the command is executed.
4343export async function activate ( context : vscode . ExtensionContext ) {
4444 extensionContext = context
45- outputChannel = vscode . window . createOutputChannel ( vscode . l10n . t ( "output.channel.name" ) )
45+ outputChannel = vscode . window . createOutputChannel ( "Roo-Code" )
4646 context . subscriptions . push ( outputChannel )
47- outputChannel . appendLine ( vscode . l10n . t ( " extension. activated") )
47+ outputChannel . appendLine ( "Roo-Code extension activated")
4848
4949 // Migrate old settings to new
5050 await migrateSettings ( context , outputChannel )
@@ -126,7 +126,7 @@ export async function activate(context: vscode.ExtensionContext) {
126126
127127// This method is called when your extension is deactivated
128128export async function deactivate ( ) {
129- outputChannel . appendLine ( vscode . l10n . t ( " extension. deactivated") )
129+ outputChannel . appendLine ( "Roo-Code extension deactivated")
130130 // Clean up MCP server manager
131131 await McpServerManager . cleanup ( extensionContext )
132132 telemetryService . shutdown ( )
You can’t perform that action at this time.
0 commit comments