From 7e37046959bbbc1a457d504942fef8c73d80b21e Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Sat, 27 Dec 2025 20:19:27 +0530 Subject: [PATCH] chore: remove warning logs when skipping ssl certificate generation --- app/controllers/general.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/controllers/general.php b/app/controllers/general.php index 996b1dce98..23de89af27 100644 --- a/app/controllers/general.php +++ b/app/controllers/general.php @@ -1048,18 +1048,15 @@ App::init() if (empty($domain->get()) || !$domain->isKnown() || $domain->isTest()) { $cache[$domain->get()] = false; Config::setParam('hostnames', $cache); - Console::warning($domain->get() . ' is not a publicly accessible domain. Skipping SSL certificate generation.'); return; } if (str_starts_with($request->getURI(), '/.well-known/acme-challenge')) { - Console::warning('Skipping SSL certificates generation on ACME challenge.'); return; } // 3. Check if domain is a main domain if (!in_array($domain->get(), $platformHostnames)) { - Console::warning($domain->get() . ' is not a main domain. Skipping SSL certificate generation.'); return; }