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 2704abb commit 8f6749cCopy full SHA for 8f6749c
fusesoc/edalizer.py
@@ -93,6 +93,9 @@ def apply_filters(self, global_filters):
93
except ModuleNotFoundError:
94
raise RuntimeError(f"Could not find EDAM filter '{f}'")
95
except Exception as e:
96
+ import traceback
97
+
98
+ traceback.print_exc()
99
raise RuntimeError(f"Filter error: {str(e)}")
100
except SystemExit as e:
101
raise RuntimeError(f"Filter exited with error code {str(e)}")
0 commit comments