GH-1927 Add more specific task status logging
* Tasks are now described by class name and object name (or memory address). * Tasks starts are logged. * Aborted tasks are now treated just as the other cases.
This commit is contained in:
@ -54,6 +54,9 @@ public:
|
||||
return m_progressTotal;
|
||||
}
|
||||
|
||||
private:
|
||||
QString describe();
|
||||
|
||||
signals:
|
||||
void started();
|
||||
void progress(qint64 current, qint64 total);
|
||||
@ -71,6 +74,7 @@ protected:
|
||||
|
||||
protected slots:
|
||||
virtual void emitSucceeded();
|
||||
virtual void emitAborted();
|
||||
virtual void emitFailed(QString reason);
|
||||
|
||||
public slots:
|
||||
|
Reference in New Issue
Block a user