Skip to content

Commit 47e3afc

Browse files
authored
Remove potential for duplicate message after creating a container app (#735)
1 parent d8b4888 commit 47e3afc

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/commands/createContainerApp/showContainerAppNotification.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import { type ContainerApp } from "@azure/arm-appcontainers";
77
import { callWithTelemetryAndErrorHandling, type IActionContext } from "@microsoft/vscode-azext-utils";
88
import { window, type MessageItem } from "vscode";
9-
import { ext } from "../../extensionVariables";
109
import { isIngressEnabled } from "../../tree/ContainerAppItem";
1110
import { localize } from "../../utils/localize";
1211
import { browseContainerApp } from "../browseContainerApp";
@@ -16,7 +15,6 @@ export async function showContainerAppNotification(containerApp: ContainerApp, i
1615
const createdCa: string = localize('createdCa', 'Successfully created new container app "{0}".', containerApp.name);
1716
const deployedCa: string = localize('deployedCa', 'Successfully updated container app "{0}"', containerApp.name);
1817
const message = isUpdate ? deployedCa : createdCa;
19-
ext.outputChannel.appendLog(message);
2018

2119
const browse: MessageItem = { title: localize('browse', 'Browse') };
2220
const buttons: MessageItem[] = [];

0 commit comments

Comments
 (0)