diff options
author | vempo <vitaliy.emporopulo@amdocs.com> | 2018-01-04 18:46:01 +0200 |
---|---|---|
committer | Vitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com> | 2018-01-04 18:09:33 +0000 |
commit | 2b959a7fcdbf82ec9534d4b860a6100643eb6447 (patch) | |
tree | 0caa5d8e15a064ca580b8aa9da5300040450f034 /openecomp-be/lib/openecomp-sdc-tosca-generator-lib | |
parent | 860f30050eac0e8e3846e5b74130206b9f610463 (diff) |
Remove enter/exit debug #4
Change-Id: I99cef676015533d9cfe66f5a5371da49856500dc
Issue-ID: SDC-875
Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-tosca-generator-lib')
-rw-r--r-- | openecomp-be/lib/openecomp-sdc-tosca-generator-lib/openecomp-sdc-tosca-generator-core/src/main/java/org/openecomp/sdc/generator/core/utils/GeneratorUtils.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-tosca-generator-lib/openecomp-sdc-tosca-generator-core/src/main/java/org/openecomp/sdc/generator/core/utils/GeneratorUtils.java b/openecomp-be/lib/openecomp-sdc-tosca-generator-lib/openecomp-sdc-tosca-generator-core/src/main/java/org/openecomp/sdc/generator/core/utils/GeneratorUtils.java index 129929ae30..f98366a6bf 100644 --- a/openecomp-be/lib/openecomp-sdc-tosca-generator-lib/openecomp-sdc-tosca-generator-core/src/main/java/org/openecomp/sdc/generator/core/utils/GeneratorUtils.java +++ b/openecomp-be/lib/openecomp-sdc-tosca-generator-lib/openecomp-sdc-tosca-generator-core/src/main/java/org/openecomp/sdc/generator/core/utils/GeneratorUtils.java @@ -1,7 +1,6 @@ package org.openecomp.sdc.generator.core.utils; import org.openecomp.sdc.datatypes.error.ErrorLevel; -import org.openecomp.sdc.logging.context.impl.MdcDataDebugMessage; import org.openecomp.sdc.logging.context.impl.MdcDataErrorMessage; import org.openecomp.sdc.logging.types.LoggerConstants; import org.openecomp.sdc.logging.types.LoggerErrorCode; @@ -36,8 +35,6 @@ public class GeneratorUtils { private static List<String> supportedCapabilities = new ArrayList<>(); private static List<String> supportedRequirements = new ArrayList<>(); - protected static MdcDataDebugMessage mdcDataDebugMessage = new MdcDataDebugMessage(); - static { //TODO : Read from configuration supportedCapabilities.addAll(Arrays.asList("host", "os", "endpoint", "scalable")); @@ -215,8 +212,6 @@ public class GeneratorUtils { Map<String, CapabilityDefinition> nodeTypeCapabilitiesDefinition, Map<String, List<String>> capabilitySubstitutionMapping, String type, String templateName, ServiceTemplate substitutionServiceTemplate, ToscaServiceModel toscaServiceModel) { - mdcDataDebugMessage.debugEntryMessage(null, null); - ToscaAnalyzerService toscaAnalyzerService = new ToscaAnalyzerServiceImpl(); NodeType flatNodeType = (NodeType) toscaAnalyzerService .getFlatEntity(ToscaElementTypes.NODE_TYPE, type, substitutionServiceTemplate, @@ -235,7 +230,6 @@ public class GeneratorUtils { capabilitySubstitutionMapping.put(capabilityKey, capabilityMapping); } } - mdcDataDebugMessage.debugExitMessage(null, null); } } |