From 2dd8468d704883f75e37348f6911f528bfcbd97f Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Sun, 2 Nov 2025 16:25:58 +0100 Subject: [PATCH] chore: add separator line to environment logging output --- src/Framework/Core/AppBootstrapper.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Framework/Core/AppBootstrapper.php b/src/Framework/Core/AppBootstrapper.php index ba2e8c35..fe9bb37a 100644 --- a/src/Framework/Core/AppBootstrapper.php +++ b/src/Framework/Core/AppBootstrapper.php @@ -54,6 +54,7 @@ final readonly class AppBootstrapper error_log("------ ENVIRONMENT VARIABLES ------"); error_log(print_r($env->all(), true)); + error_log("------------------------------------"); // Make Environment available throughout the application $this->container->instance(Environment::class, $env);