diff --git a/public/index.php b/public/index.php index 115fb285..cd809ae5 100644 --- a/public/index.php +++ b/public/index.php @@ -11,12 +11,15 @@ use App\Framework\Performance\MemoryMonitor; require __DIR__ . '/../vendor/autoload.php'; require __DIR__ . '/../src/Framework/Debug/helpers.php'; -/* -$config = [ - 'debug' => true, - 'async_discovery' => true, - // weitere Konfigurationsoptionen... -];*/ +error_log('Starting application...'); + +error_log("------ ENVIRONMENT VARIABLES ------"); + +error_log(print_r($_ENV, true)); + +error_log("------ SERVER VARIABLES ------"); + +error_log(print_r($_SERVER, true)); // Anwendung initialisieren und ausführen $basePath = dirname(__DIR__);