Small adjustments in LogManager

This commit is contained in:
k1-801 2021-03-24 17:33:54 +04:00 committed by Adam Honse
parent 460e53368d
commit 1fdd4379a7
4 changed files with 26 additions and 18 deletions

View file

@ -74,8 +74,7 @@ ResourceManager::~ResourceManager()
void ResourceManager::RegisterI2CBus(i2c_smbus_interface *bus)
{
std::string bus_name = bus->device_name;
LOG_NOTICE("Registering I2C interface: %s", bus_name.c_str());
LOG_NOTICE("Registering I2C interface: %s", bus->device_name);
busses.push_back(bus);
}