You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add logging verbosity level flag to extract_ir.py (#278)
* Add logging verbosity level flag to extract_ir.py
This commit adds a logging verbosity level flag to extract_ir.py and the
appropriate plumbing/implementation in extract_ir_lib.py. This is
primarily motivated by these errors coming up quite often in non-trivial
builds (as it is fairly often there is some assembly or some flags don't
get passed around somewhere) and not providing a very high signal to
noise ratio, especially when used as a library against a bunch of
projects at once.
* Address reviewer feedback
- Don't change logging verbosity back to info to print the status
message if the verbosity has been set lower.
* Address reviewer feedback
- Log subprocess output directly rather than having subprocess write
directly to STDOUT/STDERR.
* Address reviewer feedback
- Switch to using subprocess.check_output
0 commit comments