diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-10-20 13:42:12 -0400 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-23 22:45:30 +0100 |
commit | 51e7603d7ee10328c66b5eb7ab75a3e50cf86912 (patch) | |
tree | 803875f1f3a8e6df863d27effbd6bc76b2dba161 | |
parent | 1e6c5d002b63d408b141c290ce4710339f830456 (diff) | |
download | subsurface-51e7603d7ee10328c66b5eb7ab75a3e50cf86912.tar.gz |
QML UI: remove some of the log file noise
A couple came from this series, others are much older.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index f02d4f80b..9c12a8092 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -26,10 +26,8 @@ Kirigami.ScrollablePage { onRefreshingChanged: { if (refreshing) { if (prefs.credentialStatus === CloudStatus.CS_VERIFIED) { - console.log("User pulled down dive list - syncing with cloud storage") detailsWindow.endEditMode() manager.saveChangesCloud(true) - console.log("done syncing, turn off spinner") refreshing = false } else { console.log("sync with cloud storage requested, but credentialStatus is " + prefs.credentialStatus) @@ -412,7 +410,6 @@ Kirigami.ScrollablePage { placeholderText: "Full text search" onAccepted: { manager.setFilter(text) - console.log("back from setFilter") } onEnabledChanged: { // reset the filter when it gets toggled @@ -452,7 +449,6 @@ Kirigami.ScrollablePage { section.labelPositioning: ViewSection.CurrentLabelAtStart | ViewSection.InlineLabels onModelChanged: { numShownText = diveModel.shown() - console.log("update number shown to " + numShownText) } Connections { target: detailsWindow |