This commit is contained in:
2026-01-31 19:57:09 -08:00
parent 6513a3ad04
commit 1dbaabac73
7 changed files with 125 additions and 88 deletions

View File

@@ -52,7 +52,8 @@ def suspend_live_progress():
try:
ui.pause()
paused = True
except Exception:
except Exception as exc:
logger.exception("Failed to pause live progress UI: %s", exc)
paused = False
yield
finally:
@@ -1427,7 +1428,8 @@ class PipelineExecutor:
logger.exception("is_known_provider_name predicate failed for key %s; falling back", key)
try:
provider = get_provider(key, config)
except Exception:
except Exception as exc:
logger.exception("Failed to load provider '%s' during selector resolution: %s", key, exc)
continue
selector = getattr(provider, "selector", None)
if selector is None:
@@ -1439,7 +1441,7 @@ class PipelineExecutor:
stage_is_last=True)
)
except Exception as exc:
print(f"{key} selector failed: {exc}\n")
logger.exception("%s selector failed during selection: %s", key, exc)
return True
if handled:
return True