Make the "Wrote KTX" message a debug one

This commit is contained in:
Dale Glass 2022-06-21 15:12:49 +02:00
parent 95ebe6bab0
commit 99d00d03cd

View file

@ -38,7 +38,7 @@ void KTXCache::initialize() {
std::unique_ptr<File> KTXCache::createFile(Metadata&& metadata, const std::string& filepath) {
qCInfo(file_cache) << "Wrote KTX" << metadata.key.c_str();
qCDebug(file_cache) << "Wrote KTX" << metadata.key.c_str();
return FileCache::createFile(std::move(metadata), filepath);
}