From 3d33b36473e8bbde80f17312bf777a7e55332dc7 Mon Sep 17 00:00:00 2001 From: peintnermax Date: Tue, 10 Sep 2024 13:56:44 +0200 Subject: [PATCH] warning --- apps/login/config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/login/config.ts b/apps/login/config.ts index a7181b074f5..b5f8500f5b7 100644 --- a/apps/login/config.ts +++ b/apps/login/config.ts @@ -10,10 +10,9 @@ if (fs.existsSync(customConfigPath)) { import(customConfigPath) .then((module) => { customConfig = module.default; - console.log("found", customConfig); }) .catch((error) => { - console.error("Error loading custom configuration:", error); + console.warn("Error loading custom configuration:", error); }); } else { console.info("No custom configuration file found!");