change progress notify to log

This commit is contained in:
Thomas Vander Stichele
2009-05-03 09:54:21 +00:00
parent d26f1b90ca
commit 1529c2a082

View File

@@ -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: