diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-09-29 10:43:13 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-09-29 10:43:13 +0200 |
commit | 673b184cd63d851c7ffebdaf68803599cf092873 (patch) | |
tree | 95469e45e74a433ace4d86557939021e114b2839 /bin | |
parent | d1e920446af6eaf226d16cd87be33eaeef9e10c5 (diff) |
analyze-log: add heading for param model
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/analyze-log.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/analyze-log.py b/bin/analyze-log.py index e84446e..1e866b7 100755 --- a/bin/analyze-log.py +++ b/bin/analyze-log.py @@ -211,6 +211,7 @@ def main(): dfatool.cli.print_static(model, static_model, name, attribute) if "param" in args.show_model or "all" in args.show_model: + print("--- param model ---") for name in sorted(model.names): for attribute in sorted(model.attributes(name)): info = param_info(name, attribute) |