Skip to content

Commit e53a2d1

Browse files
committed
Revert changes to extension.ts
1 parent 41d356c commit e53a2d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/extension.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ let extensionContext: vscode.ExtensionContext
4242
// Your extension is activated the very first time the command is executed.
4343
export 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
128128
export 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()

0 commit comments

Comments
 (0)