From cd9d37aac402b0edd0f12b66fd7f2fdd5fe6dff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Mon, 2 Feb 2015 02:14:14 +0100 Subject: SCRATCH nuke the overcomplicated logger, use a simple one. --- logic/ftb/FTBProfileStrategy.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'logic/ftb/FTBProfileStrategy.cpp') diff --git a/logic/ftb/FTBProfileStrategy.cpp b/logic/ftb/FTBProfileStrategy.cpp index d5b3c90f..87be0ff9 100644 --- a/logic/ftb/FTBProfileStrategy.cpp +++ b/logic/ftb/FTBProfileStrategy.cpp @@ -106,10 +106,10 @@ void FTBProfileStrategy::loadUserPatches() QFileInfo finfo(filename); if(!finfo.exists()) { - QLOG_INFO() << "Patch file " << filename << " was deleted by external means..."; + qDebug() << "Patch file " << filename << " was deleted by external means..."; continue; } - QLOG_INFO() << "Reading" << filename << "by user order"; + qDebug() << "Reading" << filename << "by user order"; auto file = ProfileUtils::parseJsonFile(finfo, false); // sanity check. prevent tampering with files. if (file->fileId != id) @@ -124,7 +124,7 @@ void FTBProfileStrategy::loadUserPatches() for (auto info : patches.entryInfoList(QStringList() << "*.json", QDir::Files)) { // parse the file - QLOG_INFO() << "Reading" << info.fileName(); + qDebug() << "Reading" << info.fileName(); auto file = ProfileUtils::parseJsonFile(info, true); // ignore builtins if (file->fileId == "net.minecraft") -- cgit v1.2.3