Skip to content

Commit 2ca5c03

Browse files
committed
remove excessive logging
1 parent e3ba14e commit 2ca5c03

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

client/src/addon_manager/models/addon.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,8 @@ export class Addon {
194194
const moduleURI = vscode.Uri.joinPath(this.uri, "module");
195195
this.#installed =
196196
(await filesystem.exists(moduleURI)) &&
197-
((await filesystem.readDirectory(moduleURI, { recursive: false }))?.length ?? 0) > 0;
197+
((await filesystem.readDirectory(moduleURI, { recursive: false }))
198+
?.length ?? 0) > 0;
198199

199200
return folderStates;
200201
}

client/src/addon_manager/services/filesystem.service.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ namespace filesystem {
5555
const bytes = await vscode.workspace.fs.readFile(uri);
5656
const str = bytes.toString();
5757

58-
localLogger.debug(`Read "${uri.path}"`);
59-
6058
return str;
6159
}
6260

0 commit comments

Comments
 (0)