We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fca7b36 commit dbf4660Copy full SHA for dbf4660
src/utils/editor.ts
@@ -71,7 +71,6 @@ export class Editor {
71
"// END PREPEND",
72
initialCode,
73
].join("\n");
74
- self.log(contents)
75
76
await vscode.workspace.fs.readFile(vscode.Uri.file(filePath)).then(
77
(value) => {
@@ -85,6 +84,7 @@ export class Editor {
85
84
.then(async answer => {
86
// By default the code displayed is the local one
87
if (answer === "Server") {
+ self.log('EXTENSION: Saving program from server to file')
88
await vscode.workspace.fs.writeFile(
89
uri,
90
new TextEncoder().encode(contents),
0 commit comments