From 3c8a9bc057956e672a685a579feaea2444e8ecb1 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Sun, 25 Oct 2015 13:57:11 +0900 Subject: [PATCH] Move informational output to only be shown in verbose mode Signed-off-by: Dirk Hohndel --- divecomputer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/divecomputer.cpp b/divecomputer.cpp index af54e13f5..e4081e1cd 100644 --- a/divecomputer.cpp +++ b/divecomputer.cpp @@ -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); }