From a2b80ae903a0f74d7fc5470267a2909d0b31adc1 Mon Sep 17 00:00:00 2001 From: Sean Carolan Date: Tue, 11 Aug 2026 11:31:33 -0400 Subject: [PATCH] Potential fix for code scanning alert no. 3: Clear-text logging of sensitive information Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index e4a2c3d..4bc84ea 100644 --- a/app.js +++ b/app.js @@ -370,7 +370,7 @@ export async function start(deps = buildDeps()) { registerHandlers(deps); await deps.app.start(process.env.PORT || 3000); - console.log(`${deps.botName} is alive!`); + console.log('Bot is alive!'); } // Only boot the bot when this module is run directly. This is what lets the