Remove debug print with URL from ModelLoader

This commit is contained in:
ksuprynowicz 2024-02-26 23:18:23 +01:00
parent eb13a75123
commit b5911d145c

View file

@ -20,6 +20,5 @@ hfm::Model::Pointer ModelLoader::load(const hifi::ByteArray& data, const hifi::V
if (!serializer) {
return hfm::Model::Pointer();
}
qDebug() << "ModelLoader::load: " << url;
return serializer->read(data, mapping, url);
}