[libcalamaresui] Log the found-modules

- fix up comment because it described an old member variable name
 - log number of modules found (all the *potential* modules)
This commit is contained in:
Adriaan de Groot 2019-10-21 19:16:15 +02:00
parent c4b0511f8d
commit a9a12820d8

View File

@ -131,8 +131,11 @@ ModuleManager::doInit()
cDebug() << "ModuleManager module search path does not exist:" << path; cDebug() << "ModuleManager module search path does not exist:" << path;
} }
} }
// At this point m_availableModules is filled with whatever was found in the // At this point m_availableDescriptorsByModuleName is filled with
// search paths. // the modules that were found in the search paths.
cDebug() << "Found"
<< m_availableDescriptorsByModuleName.count() << "modules"
<< m_moduleDirectoriesByModuleName.count() << "names";
emit initDone(); emit initDone();
} }