From bd785e7df109669153dccc92bfb7182a6ff3faa5 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Thu, 16 May 2024 16:44:35 +0200 Subject: [PATCH] Minor: changes some debug text --- UpdatePTUDevCtrl/utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UpdatePTUDevCtrl/utils.cpp b/UpdatePTUDevCtrl/utils.cpp index 1817477..3bc998f 100644 --- a/UpdatePTUDevCtrl/utils.cpp +++ b/UpdatePTUDevCtrl/utils.cpp @@ -293,7 +293,7 @@ bool Utils::sameFilesInDirs(QDir const &dir1, QDir const &dir2, } if (fileNameLst1 != fileNameLst2) { printCriticalErrorMsg(dirPath1 + " AND " + dirPath2 - + " DIFFER: [" + fileNameLst1.join(',') + "],[" + + " HAVE DIFFERENT FILES: [" + fileNameLst1.join(',') + "],[" + fileNameLst2.join(',') + "]"); return false; } else { @@ -323,7 +323,7 @@ bool Utils::sameFilesInDirs(QDir const &dir1, QDir const &dir2, if (gitBlobLst1 != gitBlobLst2) { printCriticalErrorMsg(dirPath1 + " AND " + dirPath2 - + " DIFFER: [" + gitBlobLst1.join(',') + "],[" + + " HAVE DIFFERENT BLOBS: [" + gitBlobLst1.join(',') + "],[" + gitBlobLst2.join(',') + "]"); return false; } else {