mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Convert qDebug() to report_info() in testing code
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
4de109bbf1
commit
6dd5ec296d
3 changed files with 14 additions and 14 deletions
|
@ -6,6 +6,7 @@
|
|||
#include "core/dive.h"
|
||||
#include "core/divelist.h"
|
||||
#include "core/divelog.h"
|
||||
#include "core/errorhelper.h"
|
||||
#include "core/file.h"
|
||||
#include "core/subsurface-string.h"
|
||||
#include "core/format.h"
|
||||
|
@ -19,7 +20,6 @@
|
|||
#include <QTextStream>
|
||||
#include <QNetworkProxy>
|
||||
#include <QTextCodec>
|
||||
#include <QDebug>
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0)
|
||||
#include <QRandomGenerator>
|
||||
#endif
|
||||
|
@ -132,8 +132,8 @@ void TestGitStorage::initTestCase()
|
|||
cloudTestRepo = gitUrl + "[" + randomBranch + ']';
|
||||
localCacheDir = get_local_dir(gitUrl.c_str(), randomBranch.c_str());
|
||||
localCacheRepo = localCacheDir + "[" + randomBranch + "]";
|
||||
qDebug() << "repo used:" << cloudTestRepo.c_str();
|
||||
qDebug() << "local cache:" << localCacheRepo.c_str();
|
||||
report_info("repo used: %s", cloudTestRepo.c_str());
|
||||
report_info("local cache: %s", localCacheRepo.c_str());
|
||||
|
||||
// make sure we deal with any proxy settings that are needed
|
||||
QNetworkProxy proxy;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue