Skip to content
Snippets Groups Projects
Commit a1f40b63 authored by Adam Laskowski's avatar Adam Laskowski
Browse files

SSDM-55: debug logs cleanup

parent ce5ff4b8
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -65,10 +65,7 @@ class PlaceholderPropertyCreator implements IPropertyPlaceholderCreator
{
if (definedProperties.stream()
.anyMatch(x -> x.getPropertyType().getCode().equals(p)) == false)
// if (definedProperties.contains(p) == false)
{
operationLog.info(
"||> addPlaceholders contains BEFORE:|" + p + "|" + placeholderValue);
definedProperties.forEach(operationLog::info);
final IEntityProperty entityProperty = new EntityProperty();
entityProperty.setValue(placeholderValue);
......@@ -76,7 +73,6 @@ class PlaceholderPropertyCreator implements IPropertyPlaceholderCreator
propertyType.setCode(p);
entityProperty.setPropertyType(propertyType);
definedProperties.add(entityProperty);
operationLog.info("||> addPlaceholders AFTER:" + p);
definedProperties.forEach(operationLog::info);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment