diff options
author | Kongfa Waroros <gongpha@hotmail.com> | 2024-07-29 21:31:57 +0700 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2024-09-23 18:55:53 +0200 |
commit | f2d0f66eca23fcf4b79a71669d90d351575eed7a (patch) | |
tree | dcaddf8e6d20357e1069a4a81d6d2d40dc5ba30f | |
parent | 98e77113a2e8aedaf9ab1c85aa98f07ae7ffc29e (diff) | |
download | redot-engine-f2d0f66eca23fcf4b79a71669d90d351575eed7a.tar.gz |
Fix ResourceLoader is not verbosely printing a resource path on loading
(cherry picked from commit bfb5570c033b633c030cc269d5e98213dfebd5a5)
-rw-r--r-- | core/io/resource_loader.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/io/resource_loader.cpp b/core/io/resource_loader.cpp index 149f382bf1..2980d72783 100644 --- a/core/io/resource_loader.cpp +++ b/core/io/resource_loader.cpp @@ -339,12 +339,19 @@ void ResourceLoader::_run_load_task(void *p_userdata) { bool xl_remapped = false; const String &remapped_path = _path_remap(load_task.local_path, &xl_remapped); + + print_verbose("Loading resource: " + remapped_path); + Error load_err = OK; Ref<Resource> res = _load(remapped_path, remapped_path != load_task.local_path ? load_task.local_path : String(), load_task.type_hint, load_task.cache_mode, &load_err, load_task.use_sub_threads, &load_task.progress); if (MessageQueue::get_singleton() != MessageQueue::get_main_singleton()) { MessageQueue::get_singleton()->flush(); } + if (res.is_null()) { + print_verbose("Failed loading resource: " + remapped_path); + } + thread_load_mutex.lock(); load_task.resource = res; |