Changed misleading face detector warning message on startup in the log

This commit is contained in:
2026-01-09 00:13:03 +02:00
parent 1fc3d74a5b
commit ce00f9bd95

View File

@@ -55,11 +55,10 @@ class ProfilePictureManager:
async with aiohttp.ClientSession() as session:
async with session.get("http://anime-face-detector:6078/health", timeout=aiohttp.ClientTimeout(total=5)) as response:
if response.status == 200:
print("✅ Anime face detector API connected")
print("✅ Anime face detector API connected (pre-loaded)")
return True
except Exception as e:
print(f" Face detector API not available: {e}")
print(" Profile picture changes will use fallback cropping")
print(f" Face detector not pre-loaded (container not running)")
return False
async def _ensure_vram_available(self, debug: bool = False):