Skip to content
This repository was archived by the owner on Dec 23, 2021. It is now read-only.

Commit e951947

Browse files
committed
remove temporary console logs
1 parent 25f2d5a commit e951947

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/extension.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)