Pool Raw Access Helper bugfix

debug output commented
This commit is contained in:
Robin Müller 2020-01-14 01:39:47 +01:00
parent c747952336
commit b0d88129db
1 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ ReturnValue_t PoolRawAccessHelper::handlePoolEntrySerialization(uint32_t current
uint8_t arrayPosition = 0;
uint8_t counter = 0;
bool poolEntrySerialized = false;
info << "Pool Raw Access Helper: Handling Pool ID: " << std::hex << currentPoolId << std::endl;
//debug << "Pool Raw Access Helper: Handling Pool ID: " << std::hex << currentPoolId << std::endl;
while(not poolEntrySerialized) {
if(counter > DataSet::DATA_SET_MAX_SIZE) {
@ -92,7 +92,7 @@ ReturnValue_t PoolRawAccessHelper::handlePoolEntrySerialization(uint32_t current
counter ++;
DataSet currentDataSet = DataSet();
info << "Current array position: " << (int)arrayPosition << std::endl;
//debug << "Current array position: " << (int)arrayPosition << std::endl;
PoolRawAccess currentPoolRawAccess(currentPoolId,arrayPosition,&currentDataSet,PoolVariableIF::VAR_READ);
result = currentDataSet.read();