diff options
author | Maxim Nikolenko <maximnproductengine@lindenlab.com> | 2025-07-01 11:48:22 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-01 11:48:22 +0300 |
commit | 64b56d7ca98201f4cb5a31c21c0ff82220b7c730 (patch) | |
tree | 914de8b4f162f62013128f108b069a8481725a5d /indra | |
parent | bca9ba9b7940f9e32fe9dd25fb64fa4f2fb407db (diff) |
#4190 Provide unsupported extension info in log file
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/gltf/llgltfloader.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/gltf/llgltfloader.cpp b/indra/newview/gltf/llgltfloader.cpp index bd3c1a3833..fd0276766c 100644 --- a/indra/newview/gltf/llgltfloader.cpp +++ b/indra/newview/gltf/llgltfloader.cpp @@ -1705,6 +1705,8 @@ void LLGLTFLoader::notifyUnsupportedExtension(bool unsupported) } args["EXT"] = ext; mWarningsArray.append(args); + + LL_WARNS("GLTF_IMPORT") << "Model uses unsupported extension: " << ext << LL_ENDL; } } |