miss a pair of {} in log 04/70704/1
authorLiang Ding <liang.ding@intel.com>
Thu, 18 Oct 2018 03:28:38 +0000 (20:28 -0700)
committerLiang Ding <liang.ding@intel.com>
Thu, 18 Oct 2018 03:31:53 +0000 (20:31 -0700)
Change-Id: Icf233d49a2e72df7590632675fb32c2af4ce5b60
Issue-ID: SDC-1848
Signed-off-by: Liang Ding <liang.ding@intel.com>
catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/ComponentInstanceBusinessLogic.java

index 04d543c..1f4eb53 100644 (file)
@@ -1990,7 +1990,7 @@ public class ComponentInstanceBusinessLogic extends BaseBusinessLogic {
         String resourceId = newComponentInstance.getComponentUid();
         Either<Boolean, StorageOperationStatus> componentExistsRes = toscaOperationFacade.validateComponentExists(resourceId);
         if (componentExistsRes.isRight()) {
-            log.debug("Failed to find resource ", resourceId);
+            log.debug("Failed to find resource {} ", resourceId);
             resultOp = Either.right(componentsUtils.getResponseFormat(componentsUtils.convertFromStorageResponse
                     (componentExistsRes.right().value()), resourceId));
             return resultOp;