@arcote.tech/arc-cli 0.7.18 → 0.7.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -524,6 +524,9 @@ export async function startPlatformServer(
524
524
  mode: devMode ? "development" : "production",
525
525
  sampleRate: devMode ? 1.0 : 1.0, // head-based 100%, collector tail-samples
526
526
  debug: process.env.ARC_OTEL_DEBUG === "true",
527
+ // Production kill-switch for the console→OTLP bridge. Container
528
+ // stdout still reaches Loki via Alloy regardless.
529
+ patchConsole: process.env.ARC_OTEL_PATCH_CONSOLE !== "false",
527
530
  });
528
531
  telemetry = init.telemetry;
529
532
  telemetryShutdown = init.shutdown;