| 238 | |
| 239 | #ifdef QT_DEBUG |
| 240 | void PluginManager::printAll() { |
| 241 | loadAll(); |
| 242 | for (auto* loader : m_loadedPlugins) { |
| 243 | qDebug() << "Plugin" << loader->fileName() << "loaded"; |
| 244 | } |
| 245 | |
| 246 | for (auto* loader : m_pluginsWithErrors) { |
| 247 | qDebug() << loader->statusString(); |
| 248 | } |
| 249 | } |
| 250 | #endif |
nothing calls this directly
no test coverage detected