diff --git a/vscode/src/chat/chat-view/ChatController.ts b/vscode/src/chat/chat-view/ChatController.ts index c22ac34936bc..d4d88dd25a84 100644 --- a/vscode/src/chat/chat-view/ChatController.ts +++ b/vscode/src/chat/chat-view/ChatController.ts @@ -1050,7 +1050,7 @@ export class ChatController implements vscode.Disposable, vscode.WebviewViewProv const [priorityContext, retrievedContext, openCtxContext] = await Promise.all([ priorityContextPromise, retrievedContextPromise.catch(e => { - this.postError(new Error(`Error retrieving context, no search context was used: ${e}`)) + this.postError(new Error(`Failed to retrieve search context: ${e}`)) return [] }), openCtxContextPromise,