diff options
author | Idan Amit <ia096e@intl.att.com> | 2018-02-08 09:25:17 +0200 |
---|---|---|
committer | Idan Amit <ia096e@intl.att.com> | 2018-02-08 09:25:17 +0200 |
commit | 98d6b70321da75fb5322c146aa7be4442fc2b633 (patch) | |
tree | 1f242e25692508308ce20240cbc18f4a6f66dee2 /catalog-fe/src/main | |
parent | 7c85febc161cdc08c9e80d54df265b80c211465b (diff) |
Support DCAE in new plugins integration
Updated the ui prod.js configuration file
Changed debug logging for plugin name not connected
Change-Id: I3f89c4325253aaecc86efb6d32758cd90acc0c36
Issue-ID: SDC-1008
Signed-off-by: Idan Amit <ia096e@intl.att.com>
Diffstat (limited to 'catalog-fe/src/main')
-rw-r--r-- | catalog-fe/src/main/java/org/openecomp/sdc/fe/impl/PluginStatusBL.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog-fe/src/main/java/org/openecomp/sdc/fe/impl/PluginStatusBL.java b/catalog-fe/src/main/java/org/openecomp/sdc/fe/impl/PluginStatusBL.java index 55e779078d..a369d661fc 100644 --- a/catalog-fe/src/main/java/org/openecomp/sdc/fe/impl/PluginStatusBL.java +++ b/catalog-fe/src/main/java/org/openecomp/sdc/fe/impl/PluginStatusBL.java @@ -64,7 +64,7 @@ public class PluginStatusBL { try (CloseableHttpResponse response = this.client.execute(head)) { result = response != null && response.getStatusLine().getStatusCode() == 200; } catch (IOException e) { - log.debug("The plugin {} is offline", plugin); + log.debug("The plugin {} is offline", plugin.getPluginId()); } return result; |