Merge pull request #1639 from mandiant/fix/issue-1636

main: don't show spinner when debug messages are emitted
This commit is contained in:
Willi Ballenthin
2023-07-13 13:47:55 +02:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -59,6 +59,7 @@
- tests: refine the IDA test runner script #1513 @williballenthin
- output: don't leave behind traces of progress bar @williballenthin
- import-to-ida: fix bug introduced with JSON report changes in v5 #1584 @williballenthin
- main: don't show spinner when emitting debug messages #1636 @williballenthin
### capa explorer IDA Pro plugin

View File

@@ -1250,7 +1250,7 @@ def main(argv: Optional[List[str]] = None):
args.backend,
sig_paths,
should_save_workspace,
disable_progress=args.quiet,
disable_progress=args.quiet or args.debug,
)
except UnsupportedFormatError:
log_unsupported_format_error()