You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by im...@apache.org on 2015/10/13 12:26:32 UTC

stratos git commit: Updating info messages in cloud controller service impl

Repository: stratos
Updated Branches:
  refs/heads/stratos-4.1.x 7288794a2 -> bdd667a8d


Updating info messages in cloud controller service impl


Project: http://git-wip-us.apache.org/repos/asf/stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/bdd667a8
Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/bdd667a8
Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/bdd667a8

Branch: refs/heads/stratos-4.1.x
Commit: bdd667a8db4c069951532cdeb190625c6bc3a875
Parents: 7288794
Author: Imesh Gunaratne <im...@apache.org>
Authored: Tue Oct 13 15:56:23 2015 +0530
Committer: Imesh Gunaratne <im...@apache.org>
Committed: Tue Oct 13 15:56:23 2015 +0530

----------------------------------------------------------------------
 .../controller/services/impl/CloudControllerServiceImpl.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/bdd667a8/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceImpl.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceImpl.java b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceImpl.java
index 9b067ba..c255189 100644
--- a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceImpl.java
+++ b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/services/impl/CloudControllerServiceImpl.java
@@ -1134,7 +1134,7 @@ public class CloudControllerServiceImpl implements CloudControllerService {
             // Find load balancer ips from application subscribable properties
             Property ipListProperty = appClusterContextProperties.getProperty(CloudControllerConstants.LOAD_BALANCER_IPS);
             if (ipListProperty != null) {
-                log.info(String.format("Load balancer IP list found in application: [application] %s [cluster] %s " +
+                log.info(String.format("Load balancer IPs found in application: [application] %s [cluster] %s " +
                                 "[load-balancer-ip-list] %s", applicationId, clusterId,
                         ipListProperty.getValue()));
                 return transformToList(ipListProperty);
@@ -1159,7 +1159,7 @@ public class CloudControllerServiceImpl implements CloudControllerService {
                         if (npProperties != null) {
                             ipListProperty = npProperties.getProperty(CloudControllerConstants.LOAD_BALANCER_IPS);
                             if (ipListProperty != null) {
-                                log.debug(String.format("Load balancer IP list found in network partition: " +
+                                log.info(String.format("Load balancer IPs found in network partition: " +
                                                 "[application] %s [cluster] %s [load-balancer-ip-list] %s", applicationId,
                                         clusterId, ipListProperty.getValue()));
                                 String[] ipArray = ipListProperty.getValue().split(",");