Explorar el Código

nso: Add a log for loading submodules.

bunnei hace 8 años
padre
commit
12c7469d81
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      src/core/loader/nso.cpp

+ 1 - 0
src/core/loader/nso.cpp

@@ -162,6 +162,7 @@ ResultStatus AppLoader_NSO::Load(Kernel::SharedPtr<Kernel::Process>& process) {
 
     // Load and relocate remaining submodules
     for (const auto& module_name : {"main", "sdk", "subsdk0", "subsdk1"}) {
+        LOG_INFO(Loader, "loading %s @ 0x%08x", module_name, next_base_addr);
         const std::string module_path =
             filepath.substr(0, filepath.find_last_of("/\\")) + "/" + module_name;
         next_base_addr = LoadNso(module_path, next_base_addr);