Pretty up exception message

This commit is contained in:
2025-01-08 15:09:18 -04:00
parent 4f2fbaa255
commit 988e84a545
+2 -2
View File
@@ -82,8 +82,8 @@ SenseApiLib& SenseApiManager::loadSenseApiLib(const std::string& libraryPath)
if (!func)
{
throw std::runtime_error(
std::string(__func__) + ": dlsym("
HK_SENSE_API_DESC_GETTER_FN_NAME ") failed for library '"
std::string(__func__) + ": dlsym('"
HK_SENSE_API_DESC_GETTER_FN_NAME "') failed for library '"
+ lib->libraryPath + "'");
}
lib->getSenseApiDescriptor = func;