summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Griebl <robert.griebl@qt.io>2023-12-10 21:39:23 +0100
committerRobert Griebl <robert.griebl@qt.io>2023-12-12 19:22:21 +0100
commit13bda8d5d551d56306779af4aa056519d195a68e (patch)
tree91e370c9ac41a57974491787d9708c3c6391356c
parent376bc5c17126e4192eee3a1e0196fcedbc7325fd (diff)
Better readable ConfigCache debug output
Change-Id: Ide7976899aa2dde8f63ef5e2a3bd8c08131f657b Pick-to: 6.7 Reviewed-by: Dominik Holland <dominik.holland@qt.io>
-rw-r--r--src/common-lib/configcache.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common-lib/configcache.cpp b/src/common-lib/configcache.cpp
index 9ce3b8a3..6d28d467 100644
--- a/src/common-lib/configcache.cpp
+++ b/src/common-lib/configcache.cpp
@@ -146,9 +146,9 @@ void AbstractConfigCache::parse()
void *mergedContent = nullptr;
qCDebug(LogCache) << d->cacheBaseName << "cache file:" << cacheFile.fileName();
- qCDebug(LogCache) << d->cacheBaseName << "read cache?" << ((d->options & (ClearCache | NoCache)) ? "no" : "yes")
- << "/ write cache?" << ((d->options & NoCache) ? "no" : "yes");
- qCDebug(LogCache) << d->cacheBaseName << "reading:" << rawFilePaths;
+ qCDebug(LogCache) << d->cacheBaseName << "read cache:" << ((d->options & (ClearCache | NoCache)) ? "no" : "yes")
+ << "/ write cache:" << ((d->options & NoCache) ? "no" : "yes");
+ qCDebug(LogCache) << d->cacheBaseName << "reading:" << qPrintable(rawFilePaths.join(qSL(", ")));
if (!d->options.testFlag(NoCache) && !d->options.testFlag(ClearCache)) {
if (cacheFile.open(QFile::ReadOnly)) {