diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-12-06 10:30:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-06 10:30:37 +0100 |
commit | 3a7d5a1c64fa6e5a46b49101f3c04104ad9b954b (patch) | |
tree | 715a439c8382be924d885b79360f3099c3518d9c /modules | |
parent | 9b41b13370c6203ab43211039b4cc64698275fd6 (diff) | |
parent | 89ec3d3bc749e4ec01bdf205447e257207297421 (diff) |
Merge pull request #55651 from Calinou/remove-more-debug-prints
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gltf/gltf_document.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gltf/gltf_document.cpp b/modules/gltf/gltf_document.cpp index f3317aeada..dbf6b6e1af 100644 --- a/modules/gltf/gltf_document.cpp +++ b/modules/gltf/gltf_document.cpp @@ -192,7 +192,7 @@ Error GLTFDocument::serialize(Ref<GLTFState> state, Node *p_root, const String & uint64_t elapsed = OS::get_singleton()->get_ticks_usec() - begin_time; float elapsed_sec = double(elapsed) / 1000000.0; elapsed_sec = Math::snapped(elapsed_sec, 0.01f); - print_line("glTF: Export time elapsed seconds " + rtos(elapsed_sec).pad_decimals(2)); + print_verbose("glTF: Export time elapsed seconds " + rtos(elapsed_sec).pad_decimals(2)); return OK; } |