From 2cf5ce8a407b449de762c27f5257546c74b9094b Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 14 Oct 2025 01:52:09 +0000 Subject: [PATCH] Generalize agent error logs cgen-0432c845843d4c9f9eb8f15e39c84147 --- client/lib/skip-agent.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/lib/skip-agent.ts b/client/lib/skip-agent.ts index f220c6de..81707c25 100644 --- a/client/lib/skip-agent.ts +++ b/client/lib/skip-agent.ts @@ -409,7 +409,7 @@ const loadSkipAgent = async (): Promise => { URL.revokeObjectURL(blobUrl); window.__aethexSkipAgentInit = false; if (shouldEnableSkipAgent) { - console.warn("HelloSkip agent failed to execute", event); + console.warn("Agent runtime failed to execute", event); } }; @@ -417,7 +417,7 @@ const loadSkipAgent = async (): Promise => { } catch (error) { window.__aethexSkipAgentInit = false; if (shouldEnableSkipAgent) { - console.warn("Skipped loading HelloSkip agent:", error); + console.warn("Skipped loading agent runtime:", error); } } };