You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2021/12/09 16:19:28 UTC

[sling-whiteboard] 08/18: completions: remove debug logging

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch feature/vscode-htl
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git

commit c60c28a9838dc1b9f28b8de3201ff17b9b392964
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Thu Dec 9 11:33:08 2021 +0100

    completions: remove debug logging
---
 vscode-htl/src/htlCompletionItemProvider.ts | 1 -
 1 file changed, 1 deletion(-)

diff --git a/vscode-htl/src/htlCompletionItemProvider.ts b/vscode-htl/src/htlCompletionItemProvider.ts
index 3904724..347745c 100644
--- a/vscode-htl/src/htlCompletionItemProvider.ts
+++ b/vscode-htl/src/htlCompletionItemProvider.ts
@@ -16,7 +16,6 @@ export class HtlCompletionItemProvider implements vscode.CompletionItemProvider
 
     constructor(completionsPath: vscode.Uri) {
         const slingCompletions = vscode.Uri.joinPath(completionsPath, "completions-sling.json");
-        console.log("Reading completions from {}", slingCompletions.fsPath);
         this.completionData = new CompletionDataAccess(JSON.parse(readFileSync(slingCompletions.fsPath, 'utf-8')));
         
     }