Enable Discovery debug logging for production troubleshooting

- Add DISCOVERY_LOG_LEVEL=debug
- Add DISCOVERY_SHOW_PROGRESS=true
- Temporary changes for debugging InitializerProcessor fixes on production
This commit is contained in:
2025-08-11 20:13:26 +02:00
parent 59fd3dd3b1
commit 55a330b223
3683 changed files with 2956207 additions and 16948 deletions

View File

@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace App\Framework\Router\Result;
@@ -30,7 +31,8 @@ final class SseResultWithCallback implements ActionResult
public function __construct(
public readonly Status $status = Status::OK,
public readonly array $headers = []
) {}
) {
}
/**
* Setzt die Callback-Funktion, die während des Streamings aufgerufen wird
@@ -41,6 +43,7 @@ final class SseResultWithCallback implements ActionResult
public function setCallback(callable $callback): self
{
$this->callback = $callback;
return $this;
}
@@ -52,6 +55,7 @@ final class SseResultWithCallback implements ActionResult
public function setMaxDuration(int $seconds): self
{
$this->maxDuration = $seconds;
return $this;
}
@@ -63,6 +67,7 @@ final class SseResultWithCallback implements ActionResult
public function setHeartbeatInterval(int $seconds): self
{
$this->heartbeatInterval = $seconds;
return $this;
}