From 6c50b72853d6e98a41a67e39e7917f6a8c4d9b73 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Thu, 12 Jul 2012 09:12:13 +0000 Subject: [PATCH] * morituri/rip/debug.py: Add encode debug. --- ChangeLog | 5 +++++ morituri/rip/debug.py | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9de23ae..1c76a06 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-07-12 Thomas Vander Stichele + + * morituri/rip/debug.py: + Add encode debug. + 2012-06-24 Thomas Vander Stichele * morituri/common/program.py: diff --git a/morituri/rip/debug.py b/morituri/rip/debug.py index 82f8b2d..b3959a6 100644 --- a/morituri/rip/debug.py +++ b/morituri/rip/debug.py @@ -22,7 +22,7 @@ from morituri.common import logcommand -from morituri.extern.task import task +from morituri.common import task class Checksum(logcommand.LogCommand): @@ -78,6 +78,9 @@ class Encode(logcommand.LogCommand): from morituri.common import encode profile = encode.PROFILES[self.options.profile]() + self.debug('Encoding %s to %s', + fromPath.encode('utf-8'), + toPath.encode('utf-8')) encodetask = encode.EncodeTask(fromPath, toPath, profile) runner.run(encodetask)