We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd0c12d commit 4f1e98dCopy full SHA for 4f1e98d
docs_generator/runner.py
@@ -18,8 +18,8 @@ def get_brick_id_from_yaml(yaml_path):
18
config = yaml.safe_load(f)
19
id = config.get("id", None)
20
return id.split(":")[1] if id and ":" in id else None
21
- except Exception:
22
- logger.warning("unable to get brick id")
+ except Exception as e:
+ logger.warning("unable to get brick id from yaml: %s", e)
23
return None
24
25
0 commit comments