diff --git a/server/private/lib/logStreaming/index.ts b/server/private/lib/logStreaming/index.ts index 18662a7c0..60e0db1aa 100644 --- a/server/private/lib/logStreaming/index.ts +++ b/server/private/lib/logStreaming/index.ts @@ -24,7 +24,8 @@ import { LogStreamingManager } from "./LogStreamingManager"; */ export const logStreamingManager = new LogStreamingManager(); -if (build != "saas") { // this is handled separately in the saas build, so we don't want to start it here +if (build !== "saas") { + // this is handled separately in the saas build, so we don't want to start it here logStreamingManager.start(); }