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 5d3f2bdbfe
commit 78130c9b1e
3 changed files with 9 additions and 0 deletions

View File

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