📚 Improved logging structure across various logs files in the backend. 🖥️🔍
This commit is contained in:
@@ -57,11 +57,11 @@ if ($LASTEXITCODE -ne 0) {
|
||||
|
||||
# Flask-App verfügbarkeit prüfen
|
||||
Write-Host ""
|
||||
Write-Host "🔍 Prüfe Flask-App..." -ForegroundColor Blue
|
||||
$flaskCheck = python -c "import sys; sys.path.append('..'); from app import app; print('✅ Flask-App verfügbar')" 2>&1
|
||||
Write-Host "Prüfe Flask-App..." -ForegroundColor Blue
|
||||
$flaskCheck = python -c "import sys; sys.path.append('..'); exec('from app import app'); print('Flask-App verfügbar')" 2>&1
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
Write-Host "⚠️ Flask-App nicht direkt verfügbar" -ForegroundColor Yellow
|
||||
Write-Host "📋 Das Tool wird mit Standard-Routen arbeiten" -ForegroundColor Blue
|
||||
Write-Host "Flask-App nicht direkt verfügbar" -ForegroundColor Yellow
|
||||
Write-Host "Das Tool wird mit Standard-Routen arbeiten" -ForegroundColor Blue
|
||||
} else {
|
||||
Write-Host $flaskCheck -ForegroundColor Green
|
||||
}
|
||||
|
Reference in New Issue
Block a user