Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
bdpedigo committed Feb 29, 2024
1 parent 27f3552 commit 290ba02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graspologic/match/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def wrap(*args, **kw): # type: ignore
sec = te - ts
output = total_msg + f" took {sec:.3f} seconds."
print(output)
if print_out:
if print_out and (level <= verbose):
total_msg = (level - 1) * " "
total_msg += obj.status() + " Result:" + str(result)
print(total_msg)
Expand Down

0 comments on commit 290ba02

Please sign in to comment.