Generalize agent error logs

cgen-0432c845843d4c9f9eb8f15e39c84147
This commit is contained in:
Builder.io 2025-10-14 01:52:09 +00:00
parent e1679da82c
commit 2cf5ce8a40

View file

@ -409,7 +409,7 @@ const loadSkipAgent = async (): Promise<void> => {
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<void> => {
} catch (error) {
window.__aethexSkipAgentInit = false;
if (shouldEnableSkipAgent) {
console.warn("Skipped loading HelloSkip agent:", error);
console.warn("Skipped loading agent runtime:", error);
}
}
};