[Zodb-checkins] CVS: ZODB3/ZEO - simul.py:1.15
Guido van Rossum
guido@python.org
Wed, 16 Oct 2002 17:35:33 -0400
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv28451
Modified Files:
simul.py
Log Message:
Don't print "Skipping 8 bytes at offset"; stats.py already does this.
=== ZODB3/ZEO/simul.py 1.14 => 1.15 ===
--- ZODB3/ZEO/simul.py:1.14 Mon Oct 14 08:35:04 2002
+++ ZODB3/ZEO/simul.py Wed Oct 16 17:35:32 2002
@@ -110,7 +110,7 @@
ts, code = struct_unpack(">ii", r)
if ts == 0:
# Must be a misaligned record caused by a crash
- print "Skipping 8 bytes at offset", offset-8
+ ##print "Skipping 8 bytes at offset", offset-8
continue
r = f_read(16)
if len(r) < 16: