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)