From 2282a39f2bfa6592ff540c0c3198178e84347f6f Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sat, 10 Nov 2012 21:30:53 +0000 Subject: [PATCH] log checksums --- morituri/program/cdparanoia.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/morituri/program/cdparanoia.py b/morituri/program/cdparanoia.py index 3a0767a..75b9528 100644 --- a/morituri/program/cdparanoia.py +++ b/morituri/program/cdparanoia.py @@ -466,7 +466,9 @@ class ReadVerifyTrackTask(log.Loggable, task.MultiSeparateTask): self.checksum = self.testchecksum else: # FIXME: detect this before encoding - self.error('read and verify failed') + self.info('Checksums do not match, %08x %08x' % ( + c1, c2)) + self.error('read and verify failed: test checksum') if self.tasks[5].checksum != self.checksum: self.error('Encoding failed, checksum does not match')