diff options
author | jan Iversen <jan@casacondor.com> | 2019-12-13 10:41:11 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-13 07:04:00 -0500 |
commit | a96be9af689734dbe6d56a28f95a761b5c456e7d (patch) | |
tree | 2c0d0ce181f27c01272b7f7d1041cf0f838e0e51 /qt-models | |
parent | 11592ed958d51dd5d7fe73e95f4de25ba9b71408 (diff) | |
download | subsurface-a96be9af689734dbe6d56a28f95a761b5c456e7d.tar.gz |
qt-models: remove LOG_STP from mobile/desktop
LOG_STP is on longer providing the data needed, since a lot of the startup
is indirectly in QML, furthermore using the xcode project and running profiler
gives much more detailed information
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'qt-models')
-rw-r--r-- | qt-models/divelistmodel.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/qt-models/divelistmodel.cpp b/qt-models/divelistmodel.cpp index 7d97359f0..d45072dd2 100644 --- a/qt-models/divelistmodel.cpp +++ b/qt-models/divelistmodel.cpp @@ -4,7 +4,6 @@ #include "core/qthelper.h" #include "core/trip.h" #include "core/settings/qPrefGeneral.h" -#include "core/ssrf.h" // for LOG_STP #include "core/errorhelper.h" // for verbose #include <QDateTime> #include <QtConcurrent> @@ -184,7 +183,6 @@ bool CollapsedDiveListSortModel::filterAcceptsRow(int source_row, const QModelIn DiveListSortModel::DiveListSortModel() { setSourceModel(DiveListModel::instance()); - LOG_STP("run_ui diveListModel sorted"); } DiveListSortModel *DiveListSortModel::instance() @@ -271,7 +269,6 @@ void DiveListSortModel::reload() DiveListModel::DiveListModel() { - LOG_STP("run_ui diveListModel started"); } void DiveListModel::insertDive(int i) |