From 1529c2a082eccc2b127f8bc2bbe41ea857f1b64c Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 3 May 2009 09:54:21 +0000 Subject: [PATCH] change progress notify to log --- morituri/common/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morituri/common/task.py b/morituri/common/task.py index d1890b3..d307fc0 100644 --- a/morituri/common/task.py +++ b/morituri/common/task.py @@ -76,7 +76,7 @@ class Task(object, log.Loggable): if value - self.progress > self.increment or value >= 1.0 or value == 0.0: self.progress = value self._notifyListeners('progressed', value) - self.debug('notifying progress: %r', value) + self.log('notifying progress: %r', value) def setDescription(self, description): if description != self.description: