Merge pull request #100 from daleglass-overte/make-wrote-ktx-cache-debug

Make the "Wrote KTX" message a debug one
This commit is contained in:
Julian Groß 2022-06-26 18:25:15 +02:00 committed by GitHub
commit 036977b790
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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);
}