diff --git a/blueprint_engine.py b/blueprint_engine.py index be1d923..0c761c7 100644 --- a/blueprint_engine.py +++ b/blueprint_engine.py @@ -83,7 +83,8 @@ def evaluate_blueprints(conn): (town_id,) ).fetchall() if db_pending: - log.warning(f"[blueprint] Already has {len(db_pending)} pending/executing commands — skipping") + details = [(r['id'], r['type'], r['status']) for r in db_pending] + log.warning(f"[blueprint] Already has {len(db_pending)} pending/executing commands — skipping. Commands: {details}") continue # Calculate Future Levels based on current + game queue