simple4server: cleanup debug output
The debug output got duplicated with the original code. And the cleanup forgot
about simple4serve. (code duplicated yeah!)
--- a/hgext/simple4server.py Sat Apr 11 00:09:12 2015 -0400
+++ b/hgext/simple4server.py Sat Apr 11 10:35:26 2015 -0400
@@ -195,10 +195,6 @@
ctx = unfi[i]
entry = 0
sha = util.sha1()
- issue4587 = ctx.hex() == "195dbd1cef0c2f9f8bcf4ea303238105f716bda3"
- if issue4587:
- import sys
- print >> sys.stderr, 'Witchcraft tracking: ON'
# add data from p1
for p in ctx.parents():
p = p.rev()
@@ -209,9 +205,6 @@
if p != node.nullid:
entry += 1
sha.update(p)
- if issue4587:
- print >> sys.stderr, ' Parent: %r' % p
- print >> sys.stderr, ' Value: %s' % sha.hexdigest()
tmarkers = repo.obsstore.relevantmarkers([ctx.node()])
if tmarkers:
bmarkers = []
@@ -223,16 +216,10 @@
for m in bmarkers:
entry += 1
sha.update(m)
- if issue4587:
- print >> sys.stderr, ' Marker: %r' % m
- print >> sys.stderr, ' Value: %s' % sha.hexdigest()
if entry:
cache.append((ctx.node(), sha.digest()))
else:
cache.append((ctx.node(), node.nullid))
- if issue4587:
- print >> sys.stderr, ' Final: %s' % sha.hexdigest()
- print >> sys.stderr, 'Witchcraft tracking: OFF'
return cache
# from evolve extension: 3249814dabd1