📚 Improved logging structure across various logs files in the backend. 🖥️🔍

This commit is contained in:
2025-06-03 13:20:36 +02:00
parent 03ad8f275d
commit b29219ce4c
23 changed files with 274 additions and 14 deletions

View File

@@ -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
}