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>
This commit is contained in:
Dirk Hohndel 2018-10-20 13:42:12 -04:00
parent 1e6c5d002b
commit 51e7603d7e

View file

@ -26,10 +26,8 @@ Kirigami.ScrollablePage {
onRefreshingChanged: { onRefreshingChanged: {
if (refreshing) { if (refreshing) {
if (prefs.credentialStatus === CloudStatus.CS_VERIFIED) { if (prefs.credentialStatus === CloudStatus.CS_VERIFIED) {
console.log("User pulled down dive list - syncing with cloud storage")
detailsWindow.endEditMode() detailsWindow.endEditMode()
manager.saveChangesCloud(true) manager.saveChangesCloud(true)
console.log("done syncing, turn off spinner")
refreshing = false refreshing = false
} else { } else {
console.log("sync with cloud storage requested, but credentialStatus is " + prefs.credentialStatus) console.log("sync with cloud storage requested, but credentialStatus is " + prefs.credentialStatus)
@ -412,7 +410,6 @@ Kirigami.ScrollablePage {
placeholderText: "Full text search" placeholderText: "Full text search"
onAccepted: { onAccepted: {
manager.setFilter(text) manager.setFilter(text)
console.log("back from setFilter")
} }
onEnabledChanged: { onEnabledChanged: {
// reset the filter when it gets toggled // reset the filter when it gets toggled
@ -452,7 +449,6 @@ Kirigami.ScrollablePage {
section.labelPositioning: ViewSection.CurrentLabelAtStart | ViewSection.InlineLabels section.labelPositioning: ViewSection.CurrentLabelAtStart | ViewSection.InlineLabels
onModelChanged: { onModelChanged: {
numShownText = diveModel.shown() numShownText = diveModel.shown()
console.log("update number shown to " + numShownText)
} }
Connections { Connections {
target: detailsWindow target: detailsWindow