@@ -44,7 +44,7 @@ pldm_entity FruImpl::getEntityByObjectPath(const dbus::ObjectValueTree& objects,
44
44
entity.entity_instance_num = 1 ;
45
45
break ;
46
46
}
47
- catch (const std::exception & e )
47
+ catch (const std::exception &)
48
48
{
49
49
continue ;
50
50
}
@@ -166,7 +166,8 @@ void FruImpl::buildFRUTable()
166
166
catch (const std::exception & e)
167
167
{
168
168
info (
169
- " Look up of inventory objects failed and PLDM FRU table creation failed" );
169
+ " Look up of inventory objects failed and PLDM FRU table creation failed ERROR={ERR_EXCEP}" ,
170
+ " ERR_EXCEP" , e.what ());
170
171
return ;
171
172
}
172
173
@@ -323,7 +324,7 @@ uint32_t FruImpl::populateRecords(
323
324
std::back_inserter (tlvs));
324
325
}
325
326
}
326
- catch (const std::out_of_range& e )
327
+ catch (const std::out_of_range&)
327
328
{
328
329
continue ;
329
330
}
@@ -1136,7 +1137,7 @@ std::vector<uint32_t> FruImpl::setStatePDRParams(
1136
1137
pdr->container_id = e.value (" container" , 0 );
1137
1138
}
1138
1139
}
1139
- catch (const std::exception & ex )
1140
+ catch (const std::exception &)
1140
1141
{
1141
1142
pdr->entity_type = e.value (" type" , 0 );
1142
1143
pdr->entity_instance = e.value (" instance" , 0 );
@@ -1200,8 +1201,9 @@ std::vector<uint32_t> FruImpl::setStatePDRParams(
1200
1201
catch (const std::exception & e)
1201
1202
{
1202
1203
error (
1203
- " D-Bus object path does not exist, effecter ID: {EFFECTER_ID}" ,
1204
- " EFFECTER_ID" , static_cast <uint16_t >(pdr->effecter_id ));
1204
+ " D-Bus object path does not exist, effecter ID: {EFFECTER_ID} ERROR={ERR_EXCEP}" ,
1205
+ " EFFECTER_ID" , static_cast <uint16_t >(pdr->effecter_id ),
1206
+ " ERR_EXCEP" , e.what ());
1205
1207
}
1206
1208
dbusMappings.emplace_back (std::move (dbusMapping));
1207
1209
dbusValMaps.emplace_back (std::move (dbusIdToValMap));
@@ -1306,7 +1308,7 @@ std::vector<uint32_t> FruImpl::setStatePDRParams(
1306
1308
pdr->container_id = e.value (" container" , 0 );
1307
1309
}
1308
1310
}
1309
- catch (const std::exception & ex )
1311
+ catch (const std::exception &)
1310
1312
{
1311
1313
pdr->entity_type = e.value (" type" , 0 );
1312
1314
pdr->entity_instance = e.value (" instance" , 0 );
@@ -1379,8 +1381,9 @@ std::vector<uint32_t> FruImpl::setStatePDRParams(
1379
1381
catch (const std::exception & e)
1380
1382
{
1381
1383
error (
1382
- " D-Bus object path does not exist, sensor ID: {SENSOR_ID}" ,
1383
- " SENSOR_ID" , static_cast <uint16_t >(pdr->sensor_id ));
1384
+ " D-Bus object path does not exist, sensor ID: {SENSOR_ID} ERROR={ERR_EXCEP}" ,
1385
+ " SENSOR_ID" , static_cast <uint16_t >(pdr->sensor_id ),
1386
+ " ERR_EXCEP" , e.what ());
1384
1387
}
1385
1388
dbusMappings.emplace_back (std::move (dbusMapping));
1386
1389
dbusValMaps.emplace_back (std::move (dbusIdToValMap));
0 commit comments