Skip to content

Commit 6e96c3e

Browse files
authored
Remove console.debug calls. (#14296)
1 parent 4bb5b8a commit 6e96c3e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

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)