From b7619553fd848f946683f257ec1109bb3cc70df0 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 21 Jun 2018 15:50:11 +0900 Subject: core: print the correct message code for download failures We filled in the missing information and then printed the wrong string. This fixes that and also makes the strings slightly easier to understand. Signed-off-by: Dirk Hohndel --- core/downloadfromdcthread.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/core/downloadfromdcthread.cpp b/core/downloadfromdcthread.cpp index 0027bdcea..3c0470852 100644 --- a/core/downloadfromdcthread.cpp +++ b/core/downloadfromdcthread.cpp @@ -49,10 +49,12 @@ void DownloadThread::run() errorText = do_uemis_import(internalData); else errorText = do_libdivecomputer_import(internalData); - if (errorText) + if (errorText) { error = str_error(errorText, internalData->devname, internalData->vendor, internalData->product); - - qDebug() << "Finishing the thread" << errorText << "dives downloaded" << downloadTable.nr; + qDebug() << "Finishing download thread:" << error; + } else { + qDebug() << "Finishing download thread:" << downloadTable.nr << "dives downloaded"; + } auto dcs = SettingsObjectWrapper::instance()->dive_computer_settings; dcs->setVendor(internalData->vendor); dcs->setProduct(internalData->product); -- cgit v1.2.3-70-g09d2