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:
@@ -5,9 +5,6 @@ declare(strict_types=1);
|
||||
namespace Tests\Framework\StaticSite;
|
||||
|
||||
use App\Framework\Core\Application;
|
||||
use App\Framework\Http\Method;
|
||||
use App\Framework\Http\HttpResponse;
|
||||
use App\Framework\Http\Request;
|
||||
use App\Framework\Http\Response;
|
||||
use App\Framework\StaticSite\StaticSiteGenerator;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
@@ -15,6 +12,7 @@ use PHPUnit\Framework\TestCase;
|
||||
class StaticSiteGeneratorTest extends TestCase
|
||||
{
|
||||
private $outputDir;
|
||||
|
||||
private $app;
|
||||
|
||||
protected function setUp(): void
|
||||
@@ -42,7 +40,7 @@ class StaticSiteGeneratorTest extends TestCase
|
||||
*/
|
||||
private function removeDirectory(string $dir): void
|
||||
{
|
||||
if (!is_dir($dir)) {
|
||||
if (! is_dir($dir)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user