Skip to content

Commit 98f336f

Browse files
committed
remove debug logs
1 parent 7986598 commit 98f336f

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/plugins/app-inspector-webview.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import type {
2929

3030
export default createPlugin(
3131
"app-inspector-webview",
32-
({ context, outputChannel, localStackStatusTracker }) => {
32+
({ context, localStackStatusTracker }) => {
3333
let appInspectorPanel: WebviewPanel | undefined;
3434
context.subscriptions.push(
3535
commands.registerCommand("localstack.openAppInspector", async () => {
@@ -57,12 +57,10 @@ export default createPlugin(
5757
import.meta.dirname,
5858
"../resources/app-inspector/dist",
5959
);
60-
outputChannel.debug(`appInspectorDist=${appInspectorDist}`);
6160
const html = await readFile(
6261
path.join(appInspectorDist, "index.html"),
6362
"utf-8",
6463
);
65-
outputChannel.debug(`html=${html}`);
6664
const extensionVersion =
6765
(
6866
extensions.getExtension("localstack.localstack")?.packageJSON as {
@@ -92,7 +90,6 @@ export default createPlugin(
9290
extensionVersion,
9391
})};`,
9492
);
95-
outputChannel.debug(`html=${panel.webview.html}`);
9693
}),
9794
);
9895

0 commit comments

Comments
 (0)