Skip to content

Commit

Permalink
printing written proof size if not quiet (decreased required verbosit…
Browse files Browse the repository at this point in the history
…y by 2)
  • Loading branch information
Armin Biere committed Oct 1, 2023
1 parent a9305c2 commit 29cd4cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 1.7.5
-------------

- Decreased verbosity level for printing proof size.

Version 1.7.4
-------------

Expand Down
2 changes: 1 addition & 1 deletion src/file.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ void File::close () {
// TODO what about error checking for 'fclose', 'pclose' or 'waitpid'?

#ifndef QUIET
if (internal->opts.verbose > 1) {
if (internal->opts.verbose >= 0) {
if (writing) {
uint64_t written_bytes = bytes ();
double written_mb = written_bytes / (double) (1 << 20);
Expand Down

0 comments on commit 29cd4cb

Please sign in to comment.