mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-04-04 22:24:12 -04:00
Add error logs for non logged exceptions
This commit is contained in:
@@ -222,9 +222,9 @@ void DetectPhilipsHueControllers(std::vector<RGBController*>& rgb_controllers)
|
||||
}
|
||||
}
|
||||
}
|
||||
catch(std::exception &e)
|
||||
catch(const std::exception &e)
|
||||
{
|
||||
LOG_INFO("Exception occurred in Philips Hue detection");
|
||||
LOG_INFO("Exception occurred in Philips Hue detection: %s", e.what());
|
||||
}
|
||||
}
|
||||
} /* DetectPhilipsHueControllers() */
|
||||
|
||||
Reference in New Issue
Block a user