File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import type {
2929
3030export 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
You can’t perform that action at this time.
0 commit comments