Move informational output to only be shown in verbose mode

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-10-25 13:57:11 +09:00
parent 2b1017c986
commit 3c8a9bc057

View file

@ -88,7 +88,8 @@ void DiveComputerList::addDC(QString m, uint32_t d, QString n, QString s, QStrin
return;
// debugging: show changes
existNode->showchanges(n, s, f);
if (verbose)
existNode->showchanges(n, s, f);
dcMap.remove(m, *existNode);
}