diff --git a/panda/src/pgraph/loader.cxx b/panda/src/pgraph/loader.cxx index c225cc9a4e..9b1201cf0a 100644 --- a/panda/src/pgraph/loader.cxx +++ b/panda/src/pgraph/loader.cxx @@ -486,6 +486,9 @@ load_file_types() { loader_cat.warning() << "Unable to load " << dlname.to_os_specific() << ": " << load_dso_error() << endl; + } else if (loader_cat.is_debug()) { + loader_cat.debug() + << "done loading file type module: " << name << endl; } } else if (words.size() > 1) { diff --git a/panda/src/pgraph/loaderFileTypeRegistry.cxx b/panda/src/pgraph/loaderFileTypeRegistry.cxx index 962effcafc..13b4e5e425 100644 --- a/panda/src/pgraph/loaderFileTypeRegistry.cxx +++ b/panda/src/pgraph/loaderFileTypeRegistry.cxx @@ -178,6 +178,9 @@ get_type_from_extension(const string &extension) { << "Unable to load " << dlname.to_os_specific() << ": " << load_dso_error() << endl; return NULL; + } else if (loader_cat.is_debug()) { + loader_cat.debug() + << "done loading file type module: " << name << endl; } // Now try again to find the LoaderFileType.