Skip to content

Commit 494531e

Browse files
committed
style: remove console log statements
1 parent 2ed8c78 commit 494531e

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

packages/server/src/services/fs.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ class FileSystemService {
1818
}
1919

2020
public updateFileList(): void {
21-
console.log('Updating file list');
2221
this.moduleFileList = [];
2322
this.workspaces.forEach((folder) => {
2423
const workspaceUri = URI.parse(folder.uri);

packages/server/src/validations/validateFilePath.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,6 @@ export function validateFilePaths(textDocument: TextDocument): Diagnostic[] {
7676
}
7777

7878
function checkIfPathExists(filePath: string): boolean {
79-
console.log('checking if file exists: ', filePath);
80-
console.log(
81-
'fileSystemService.moduleFileList',
82-
fileSystemService.moduleFileList.slice(0, 5)
83-
);
84-
8579
if (fileSystemService.moduleFileList.includes(filePath)) {
8680
return true;
8781
}

0 commit comments

Comments
 (0)