Skip to content

Commit

Permalink
Don't print access counts on default verbosity.
Browse files Browse the repository at this point in the history
  • Loading branch information
ktemkin committed Oct 19, 2017
1 parent 35e9c55 commit 9ea8718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion facedancer-ums-doublefetch.py
Expand Up @@ -188,7 +188,7 @@ def get_sector_data(self, address):
result = super().get_sector_data(address)

# If this is a handled sector, print how many times it's been read.
if self.verbose > 0 and self._find_sector_handler(address):
if self.verbose > 1 and self._find_sector_handler(address):
print(" [sector has been read {} times]".format(self.sector_read_counts[address]))

return result
Expand Down

0 comments on commit 9ea8718

Please sign in to comment.