Skip to content

Commit

Permalink
log added
Browse files Browse the repository at this point in the history
  • Loading branch information
pcorino authored and Marco Libanori committed Mar 4, 2024
1 parent 676a4c6 commit 5f8f462
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ public void transformDataSetRecords(IDataStore dataStore) {
List<IField> fields = currRecord.getFields();

for (int i = 0; i < fields.size(); i++) {
LOGGER.debug("Checking subject field {} - fieldFound {}", i, subjectFieldByIndex.containsKey(i));
if (subjectFieldByIndex.containsKey(i)) {
IFieldMetaData fieldMetaData = subjectFieldByIndex.get(i);
IField fieldAt = currRecord.getFieldAt(i);
Expand All @@ -110,6 +111,7 @@ public void transformDataSetRecords(IDataStore dataStore) {
}
}
for (int i = 0; i < fields.size(); i++) {
LOGGER.debug("Checking sensiblefield {} - fieldFound {}", i, sensibleFieldByIndex.containsKey(i));
if (sensibleFieldByIndex.containsKey(i)) {
IFieldMetaData fieldMetaData = sensibleFieldByIndex.get(i);
String fieldName = fieldMetaData.getName();
Expand Down Expand Up @@ -179,6 +181,9 @@ private void setUpPrivacy() {
});

needPM = !sensibleField.isEmpty();
LOGGER.debug("subjectFiledByIndex {}", subjectFieldByIndex.toString());
LOGGER.debug("subjectFieldOrder {}", subjectFieldOrder.toString());
LOGGER.debug("sensibleFiledByIndex {}", sensibleFieldByIndex.toString());

}

Expand Down

0 comments on commit 5f8f462

Please sign in to comment.