Skip to content

Commit 8f6749c

Browse files
committed
Dump stacktrace on filter errors
1 parent 2704abb commit 8f6749c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

fusesoc/edalizer.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ def apply_filters(self, global_filters):
9393
except ModuleNotFoundError:
9494
raise RuntimeError(f"Could not find EDAM filter '{f}'")
9595
except Exception as e:
96+
import traceback
97+
98+
traceback.print_exc()
9699
raise RuntimeError(f"Filter error: {str(e)}")
97100
except SystemExit as e:
98101
raise RuntimeError(f"Filter exited with error code {str(e)}")

0 commit comments

Comments
 (0)