diff --git a/src/commands/createContainerApp/showContainerAppNotification.ts b/src/commands/createContainerApp/showContainerAppNotification.ts index a3a24dec3..2c19def2e 100644 --- a/src/commands/createContainerApp/showContainerAppNotification.ts +++ b/src/commands/createContainerApp/showContainerAppNotification.ts @@ -6,7 +6,6 @@ import { type ContainerApp } from "@azure/arm-appcontainers"; import { callWithTelemetryAndErrorHandling, type IActionContext } from "@microsoft/vscode-azext-utils"; import { window, type MessageItem } from "vscode"; -import { ext } from "../../extensionVariables"; import { isIngressEnabled } from "../../tree/ContainerAppItem"; import { localize } from "../../utils/localize"; import { browseContainerApp } from "../browseContainerApp"; @@ -16,7 +15,6 @@ export async function showContainerAppNotification(containerApp: ContainerApp, i const createdCa: string = localize('createdCa', 'Successfully created new container app "{0}".', containerApp.name); const deployedCa: string = localize('deployedCa', 'Successfully updated container app "{0}"', containerApp.name); const message = isUpdate ? deployedCa : createdCa; - ext.outputChannel.appendLog(message); const browse: MessageItem = { title: localize('browse', 'Browse') }; const buttons: MessageItem[] = [];