From f87e11712c5c5ad937c4ca1abd29a2e8594ff1c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20M=C3=B3ricz?= Date: Thu, 13 Mar 2025 17:30:37 +0100 Subject: [PATCH] fix: don't log bull secret --- apps/api/src/index.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/api/src/index.ts b/apps/api/src/index.ts index bc6925e5..50fce459 100644 --- a/apps/api/src/index.ts +++ b/apps/api/src/index.ts @@ -89,9 +89,6 @@ const HOST = process.env.HOST ?? "localhost"; function startServer(port = DEFAULT_PORT) { const server = app.listen(Number(port), HOST, () => { logger.info(`Worker ${process.pid} listening on port ${port}`); - logger.info( - `For the Queue UI, open: http://${HOST}:${port}/admin/${process.env.BULL_AUTH_KEY}/queues`, - ); }); const exitHandler = () => {