Skip to content

Commit dbf4660

Browse files
committed
Changed logs
1 parent fca7b36 commit dbf4660

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/editor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ export class Editor {
7171
"// END PREPEND",
7272
initialCode,
7373
].join("\n");
74-
self.log(contents)
7574

7675
await vscode.workspace.fs.readFile(vscode.Uri.file(filePath)).then(
7776
(value) => {
@@ -85,6 +84,7 @@ export class Editor {
8584
.then(async answer => {
8685
// By default the code displayed is the local one
8786
if (answer === "Server") {
87+
self.log('EXTENSION: Saving program from server to file')
8888
await vscode.workspace.fs.writeFile(
8989
uri,
9090
new TextEncoder().encode(contents),

0 commit comments

Comments
 (0)