This repository was archived by the owner on Dec 23, 2021. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -141,7 +141,6 @@ export async function activate(context: vscode.ExtensionContext) {
141141 }
142142 ) ;
143143
144-
145144 currentPanel . webview . html = getWebviewContent ( context ) ;
146145
147146 if ( messageListener !== undefined ) {
@@ -452,7 +451,6 @@ export async function activate(context: vscode.ExtensionContext) {
452451 const runSimulatorCommand = async ( ) => {
453452 // Prevent running new code if a debug session is active
454453 if ( inDebugMode ) {
455- console . log ( "debug mode not running simulator command" )
456454 vscode . window . showErrorMessage (
457455 CONSTANTS . ERROR . DEBUGGING_SESSION_IN_PROGESS
458456 ) ;
@@ -571,7 +569,6 @@ export async function activate(context: vscode.ExtensionContext) {
571569 childProcess . stdout . on ( "data" , data => {
572570 dataFromTheProcess = data . toString ( ) ;
573571 if ( currentPanel ) {
574- console . log ( "receiving message" )
575572 // Process the data from the process and send one state at a time
576573 dataFromTheProcess . split ( "\0" ) . forEach ( message => {
577574 if (
@@ -1034,7 +1031,7 @@ const updateCurrentFileIfPython = async (
10341031 if (
10351032 currentTextDocument &&
10361033 utils . getActiveEditorFromPath ( currentTextDocument . fileName ) ===
1037- undefined
1034+ undefined
10381035 ) {
10391036 await vscode . window . showTextDocument (
10401037 currentTextDocument ,
You can’t perform that action at this time.
0 commit comments