Skip to content

Commit 33ed8d1

Browse files
committed
Remove console.debug calls.
1 parent be8236f commit 33ed8d1

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

Extension/src/LanguageServer/copilotCompletionContextProvider.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,6 @@ ${copilotCompletionContext?.areSnippetsMissing ? "(missing code snippets)" : ""}
466466
throw new CopilotContextProviderException("getContextProviderAPI() is not available in Copilot Chat.");
467467
}
468468
}).catch((e) => {
469-
console.debug("Failed to register the Copilot Context Provider with Copilot Chat.");
470469
let message = "Failed to register the Copilot Context Provider with Copilot Chat";
471470
if (e instanceof CopilotContextProviderException) {
472471
message += `: ${e.message} `;
@@ -500,7 +499,6 @@ ${copilotCompletionContext?.areSnippetsMissing ? "(missing code snippets)" : ""}
500499
throw new CopilotContextProviderException("getContextProviderAPI() is not available in Copilot client.");
501500
}
502501
}).catch((e) => {
503-
console.debug("Failed to register the Copilot Context Provider with Copilot client.");
504502
let message = "Failed to register the Copilot Context Provider with Copilot client";
505503
if (e instanceof CopilotContextProviderException) {
506504
message += `: ${e.message} `;

0 commit comments

Comments
 (0)