From f01c8cc6107cefe1a7e219f69344b5adb53c25be Mon Sep 17 00:00:00 2001 From: "Singal, Kapil (ks220y)" Date: Thu, 26 Sep 2019 20:51:12 -0400 Subject: Resource Resolution Refactoring Refactoring some logging statements and adding new loggers Issue-ID: CCSDK-1748 Signed-off-by: Singal, Kapil (ks220y) Change-Id: I5676659eea01056a7d29206f13473a4361516755 --- .../resource/dict/ResourceDefinition.kt | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'ms/controllerblueprints/modules/resource-dict') diff --git a/ms/controllerblueprints/modules/resource-dict/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/resource/dict/ResourceDefinition.kt b/ms/controllerblueprints/modules/resource-dict/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/resource/dict/ResourceDefinition.kt index 2966d8b5d..f1e0d2c86 100644 --- a/ms/controllerblueprints/modules/resource-dict/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/resource/dict/ResourceDefinition.kt +++ b/ms/controllerblueprints/modules/resource-dict/src/main/kotlin/org/onap/ccsdk/cds/controllerblueprints/resource/dict/ResourceDefinition.kt @@ -85,16 +85,13 @@ open class ResourceAssignment { override fun toString(): String { return """ - [ + [ name = $name - status = $status - property [ - defaultValue = ${property?.defaultValue} - required = ${property?.required} - metadata = ${property?.metadata} - ] + status = $status + required = ${property?.required} + dependencies = $dependencies dictionaryName = $dictionaryName - dictionarySource = $dictionarySource + dictionarySource = $dictionarySource ] """.trimIndent() } -- cgit 1.2.3-korg