Skip to content

Commit dfc8081

Browse files
Shareef Jalloqolofk
authored andcommitted
fix(slang): don't silence warnings (#484)
Support for slang was added back in 2021 but it looks like the tool has always been run with quiet=True which means that only errors surface.
1 parent 6f080c8 commit dfc8081

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

edalize/slang.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def build_main(self):
134134
self._get_slang_options()
135135
self._get_run_mode_flags()
136136
self._get_top_flags()
137-
self._run_tool("slang", self.flags, quiet=True)
137+
self._run_tool("slang", self.flags)
138138
return
139139

140140
def configure_main(self):

0 commit comments

Comments
 (0)