Skip to content

Commit

Permalink
Merge pull request #1639 from mandiant/fix/issue-1636
Browse files Browse the repository at this point in the history
main: don't show spinner when debug messages are emitted
  • Loading branch information
williballenthin authored Jul 13, 2023
2 parents 562a619 + 04db034 commit 8c9853a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion capa/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 8c9853a

Please sign in to comment.