QML UI: make profile drawing less verbose

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2017-03-18 15:49:56 -07:00
parent 10842b3eb3
commit 7ffc619f4c

View file

@ -86,7 +86,8 @@ void QMLProfile::setDiveId(const QString &diveId)
return;
if (!d)
return;
qDebug() << "setDiveId called with valid dive" << d->number;
if (verbose)
qDebug() << "setDiveId(" << d->number << ")";
m_profileWidget->plotDive(d, true);
}