We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e4bf86 commit 9650abeCopy full SHA for 9650abe
src/cloudai/cli/handlers.py
@@ -403,12 +403,14 @@ def verify_system_configs(system_tomls: List[Path]) -> int:
403
try:
404
with _ensure_kube_config_exists(system_toml, content):
405
Parser.parse_system(system_toml)
406
- except Exception:
+ except Exception as e:
407
+ logging.debug(f"Failed to parse system config {system_toml}: {e}", exc_info=True)
408
nfailed += 1
409
else:
410
411
412
413
414
415
416
if nfailed:
0 commit comments