Skip to content

Commit d55d358

Browse files
committed
Disable verbose SSE logs
1 parent 46ad351 commit d55d358

3 files changed

+3
-3
lines changed

apps/webapp/app/routes/engine.v1.dev.presence.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { createSSELoader } from "~/utils/sse";
88
export const loader = createSSELoader({
99
timeout: env.DEV_PRESENCE_SSE_TIMEOUT,
1010
interval: env.DEV_PRESENCE_TTL_MS * 0.8,
11-
debug: true,
11+
debug: false,
1212
handler: async ({ id, controller, debug, request }) => {
1313
const authentication = await authenticateApiRequestWithFailure(request);
1414

apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.dev.presence.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { createSSELoader, type SendFunction } from "~/utils/sse";
99
export const loader = createSSELoader({
1010
timeout: env.DEV_PRESENCE_SSE_TIMEOUT,
1111
interval: env.DEV_PRESENCE_POLL_MS,
12-
debug: true,
12+
debug: false,
1313
handler: async ({ id, controller, debug, request, params }) => {
1414
const userId = await requireUserId(request);
1515
const { organizationSlug, projectParam } = ProjectParamSchema.parse(params);

apps/webapp/app/routes/resources.orgs.$organizationSlug.projects.$projectParam.env.$envParam.queues.stream.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { createSSELoader } from "~/utils/sse";
88
export const loader = createSSELoader({
99
timeout: env.QUEUE_SSE_AUTORELOAD_TIMEOUT_MS,
1010
interval: env.QUEUE_SSE_AUTORELOAD_INTERVAL_MS,
11-
debug: true,
11+
debug: false,
1212
handler: async ({ request, params }) => {
1313
const userId = await requireUserId(request);
1414
const { projectParam, envParam } = EnvironmentParamSchema.parse(params);

0 commit comments

Comments
 (0)