From 65e991e278c862c8cdf34425de10b1afcdde8639 Mon Sep 17 00:00:00 2001 From: gagik Date: Fri, 20 Dec 2024 18:49:22 +0100 Subject: [PATCH] better wording --- src/participant/participant.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/participant/participant.ts b/src/participant/participant.ts index a87d7e27..7cfaa71c 100644 --- a/src/participant/participant.ts +++ b/src/participant/participant.ts @@ -371,7 +371,10 @@ export default class ParticipantController { return runnableContent.length ? runnableContent.join('') : null; } catch (error) { /** If anything goes wrong with the response or the stream, return null instead of throwing. */ - log.error('Error while exporting to playground', error); + log.error( + 'Error while streaming chat response with export to language', + error + ); return null; } }