summaryrefslogtreecommitdiffstats
path: root/qthelper.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-09-23 12:20:21 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-09-23 12:20:21 -0700
commita30e78140f7eea8847b0f416ca7b461491a01f35 (patch)
tree5bef62f54f38a3574633597ccba3f2c1f5134f56 /qthelper.cpp
parentc9f72e510a655fdca7c35be688d96f8c05659bc8 (diff)
downloadsubsurface-a30e78140f7eea8847b0f416ca7b461491a01f35.tar.gz
Hide a couple of debugging messages
They are useful to show when trying to figure out what's going on, so just move them behind a check for verbose. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qthelper.cpp')
-rw-r--r--qthelper.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/qthelper.cpp b/qthelper.cpp
index 3a4daf833..06a6610f0 100644
--- a/qthelper.cpp
+++ b/qthelper.cpp
@@ -1376,7 +1376,8 @@ int getCloudURL(QString &filename)
prefs.cloud_storage_email_encoded = strdup(qPrintable(email));
}
filename = QString(QString(prefs.cloud_git_url) + "/%1[%1]").arg(email);
- qDebug() << "cloud URL set as" << filename;
+ if (verbose)
+ qDebug() << "cloud URL set as" << filename;
return 0;
}