From d511021ae34c267daedcc79296494909417bdf13 Mon Sep 17 00:00:00 2001 From: Tim Swanson Date: Thu, 16 Jul 2026 11:11:32 -0600 Subject: [PATCH] Add logged warning to mainline branch --- packages/visual-editor/src/bootstrap.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/visual-editor/src/bootstrap.ts b/packages/visual-editor/src/bootstrap.ts index aa99b261ae1..1291d1a85f7 100644 --- a/packages/visual-editor/src/bootstrap.ts +++ b/packages/visual-editor/src/bootstrap.ts @@ -44,6 +44,13 @@ function setColorScheme(colorScheme?: "light" | "dark") { } async function bootstrap(bootstrapArgs: BootstrapArguments) { + logger.log( + Utils.Logging.Formatter.warning( + "This is the development branch of Breadboard; not suitable for production" + ), + "Bootstrap" + ); + const { shellHost, embedHandler, hostOrigin } = await connectToOpalShellHost();