Another logging message to see how the classification is doing

This commit is contained in:
Jonas Linter
2025-12-03 18:52:53 +01:00
parent ff338ecb15
commit 67c20bc18a

View File

@@ -1575,6 +1575,10 @@ class ConversionService:
result = await session.execute(query) result = await session.execute(query)
guests = result.scalars().all() guests = result.scalars().all()
_LOGGER.info(
"Evaluating %d guests for regular/awareness classification", len(guests)
)
for guest in guests: for guest in guests:
stats["processed"] += 1 stats["processed"] += 1
is_regular, is_awareness = self._evaluate_guest_regularity(guest) is_regular, is_awareness = self._evaluate_guest_regularity(guest)