Skip to content
Snippets Groups Projects
Commit 7ee0038b authored by Alán Muñoz's avatar Alán Muñoz
Browse files

refactor(swainlab_parser): Increase fail info

parent 571e3699
No related branches found
No related tags found
No related merge requests found
...@@ -231,7 +231,7 @@ def parse_from_grammar(filepath: str, grammar: t.Dict): ...@@ -231,7 +231,7 @@ def parse_from_grammar(filepath: str, grammar: t.Dict):
d[subkey] = parse_x(header, **subvalues) d[subkey] = parse_x(header, **subvalues)
except Exception as e: except Exception as e:
logging.getLogger("aliby").critical( logging.getLogger("aliby").critical(
f"Parsing failed for key {key}" f"Parsing failed for key {key} and values {values}"
) )
raise (e) raise (e)
return d return d
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment