diff options
author | Linus Nordberg <linus@nordu.net> | 2015-11-20 10:14:04 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2015-11-20 10:14:04 +0100 |
commit | f3d1659b37351fe2ad958114631f8c1578712e51 (patch) | |
tree | 6daa632d0a56ba0e600b5694e25c5710ffb3b5b4 /tools/merge_sth.py | |
parent | 1a9625f9fb0fb369246188e047a3919b8f69c845 (diff) |
Remove debug printouts from merge programs.
Diffstat (limited to 'tools/merge_sth.py')
-rwxr-xr-x | tools/merge_sth.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/merge_sth.py b/tools/merge_sth.py index 567082c..e8f99d3 100755 --- a/tools/merge_sth.py +++ b/tools/merge_sth.py @@ -45,7 +45,7 @@ def merge_sth(args, config, localconfig): tree = {'tree_size': 0, "sha256_root_hash": ''} trees.append(tree) trees.sort(key=lambda e: e['tree_size'], reverse=True) - print >>sys.stderr, "DEBUG: trees:", trees + #print >>sys.stderr, "DEBUG: trees:", trees if backupquorum > len(trees) - 1: print >>sys.stderr, "backup quorum > number of secondaries:", \ @@ -53,7 +53,7 @@ def merge_sth(args, config, localconfig): return tree_size = trees[backupquorum]['tree_size'] root_hash = hexdecode(trees[backupquorum]['sha256_root_hash']) - print >>sys.stderr, "DEBUG: tree size candidate at backupquorum", \ + #print >>sys.stderr, "DEBUG: tree size candidate at backupquorum", \ backupquorum, ":", tree_size cur_sth = get_sth(sthfile) |