Expose LogManager in ResourceManager so that plugins can use it

This commit is contained in:
Adam Honse
2026-01-24 22:33:40 -06:00
parent b7f68379c2
commit cd1c9c705b
3 changed files with 9 additions and 0 deletions

View File

@@ -248,6 +248,11 @@ std::vector<i2c_smbus_interface*> & ResourceManager::GetI2CBusses()
return DetectionManager::get()->GetI2CBuses();
}
LogManager* ResourceManager::GetLogManager()
{
return LogManager::get();
}
PluginManagerInterface* ResourceManager::GetPluginManager()
{
return(plugin_manager);