From f6a8182caab1908414aa11eaec348fb0af67aca8 Mon Sep 17 00:00:00 2001 From: Matt Bierner <12821956+mjbvz@users.noreply.github.com> Date: Tue, 10 Mar 2026 14:40:33 -0700 Subject: [PATCH] Remove one log --- src/vs/workbench/api/browser/mainThreadChatSessions.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/vs/workbench/api/browser/mainThreadChatSessions.ts b/src/vs/workbench/api/browser/mainThreadChatSessions.ts index b0c7a8b1faa..58620001e24 100644 --- a/src/vs/workbench/api/browser/mainThreadChatSessions.ts +++ b/src/vs/workbench/api/browser/mainThreadChatSessions.ts @@ -706,7 +706,6 @@ export class MainThreadChatSessions extends Disposable implements MainThreadChat async $handleProgressChunk(handle: number, sessionResource: UriComponents, requestId: string, chunks: (IChatProgressDto | [IChatProgressDto, number])[]): Promise { const resource = URI.revive(sessionResource); - warnOnUntitledSessionResource(resource); const observableSession = this._activeSessions.get(resource); if (!observableSession) { this._logService.warn(`No session found for progress chunks: handle ${handle}, sessionResource ${resource}, requestId ${requestId}`);