Remove unwanted console.logs (#277374)

This commit is contained in:
Don Jayamanne
2025-11-14 10:37:45 +00:00
committed by GitHub
parent a12339cc91
commit 2ad979732c

View File

@@ -14,9 +14,7 @@ async function createRandomNotebookFile() {
}
async function openRandomNotebookDocument() {
console.log('Creating a random notebook file');
const uri = await createRandomNotebookFile();
console.log('Created a random notebook file');
return vscode.workspace.openNotebookDocument(uri);
}
@@ -121,7 +119,6 @@ const apiTestSerializer: vscode.NotebookSerializer = {
}
]
};
console.log('Returning NotebookData in deserializeNotebook');
return dto;
}
};