Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kamm <mail@ckamm.de>2016-06-09 15:28:15 +0300
committerChristian Kamm <mail@ckamm.de>2016-06-09 15:28:15 +0300
commitd655074f85d93d799b0893e1943e71a552c74795 (patch)
treee75bd9600793c396be46a3392c5ee56cd1b9adc0 /src/gui/syncrunfilelog.h
parent85a173e1746b268416b18f9c377ee317d937ddac (diff)
Log: Include start of propagation and lap duration
Diffstat (limited to 'src/gui/syncrunfilelog.h')
-rw-r--r--src/gui/syncrunfilelog.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/syncrunfilelog.h b/src/gui/syncrunfilelog.h
index 0b1e55eb8..7f3007815 100644
--- a/src/gui/syncrunfilelog.h
+++ b/src/gui/syncrunfilelog.h
@@ -34,6 +34,7 @@ public:
SyncRunFileLog();
void start( const QString& folderPath );
void logItem( const SyncFileItem& item );
+ void logLap( const QString& name );
void finish();
protected:
@@ -45,7 +46,8 @@ private:
QScopedPointer<QFile> _file;
QTextStream _out;
- QElapsedTimer _duration;
+ QElapsedTimer _totalDuration;
+ QElapsedTimer _lapDuration;
};
}