We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4398d9f commit 491bf7aCopy full SHA for 491bf7a
src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHeaderDiagnosticsProvider.ts
@@ -66,7 +66,6 @@ class PromptHeaderDiagnosticsProvider extends ProviderInstanceBase {
66
if (!completed || token.isCancellationRequested) {
67
return;
68
}
69
- console.log(`Prompt header diagnostics for ${this.model.uri.toString()}:`);
70
71
const markers: IMarkerData[] = [];
72
for (const diagnostic of header.diagnostics) {
@@ -83,7 +82,6 @@ class PromptHeaderDiagnosticsProvider extends ProviderInstanceBase {
83
82
84
85
if (markers.length === 0) {
86
- console.warn(`No markers for ${this.model.uri.toString()}`);
87
this.markerService.remove(MARKERS_OWNER_ID, [this.model.uri]);
88
89
0 commit comments