Updated Branches: refs/heads/master f413fdc41 -> bf18d4459
Correcting a comment Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/b7c8f869 Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/b7c8f869 Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/b7c8f869 Branch: refs/heads/master Commit: b7c8f869653dc1f89664fbde4cd1b714b57a9454 Parents: e7f3ade Author: Lahiru Sandaruwan <[email protected]> Authored: Thu Jan 2 19:27:01 2014 +0530 Committer: Lahiru Sandaruwan <[email protected]> Committed: Thu Jan 2 19:27:01 2014 +0530 ---------------------------------------------------------------------- .../stratos/autoscaler/NetworkPartitionContext.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/b7c8f869/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/NetworkPartitionContext.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/NetworkPartitionContext.java b/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/NetworkPartitionContext.java index 72a2071..6e36da3 100644 --- a/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/NetworkPartitionContext.java +++ b/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/NetworkPartitionContext.java @@ -305,7 +305,7 @@ public class NetworkPartitionContext implements Serializable{ if(secondDerivativeMemoryConsumptionRest && gradientMemoryConsumptionReset){ memoryConsumptionReset = true; if(log.isDebugEnabled()){ - log.debug(String.format("Requests in flights stats are reset, ready to do scale check [network partition] %s" + log.debug(String.format("Memory consumption stats are reset, ready to do scale check [network partition] %s" , this.id)); } } @@ -321,7 +321,7 @@ public class NetworkPartitionContext implements Serializable{ if(averageMemoryConsumptionReset && gradientMemoryConsumptionReset){ memoryConsumptionReset = true; if(log.isDebugEnabled()){ - log.debug(String.format("Requests in flights stats are reset, ready to do scale check [network partition] %s" + log.debug(String.format("Memory consumption stats are reset, ready to do scale check [network partition] %s" , this.id)); } } @@ -337,7 +337,7 @@ public class NetworkPartitionContext implements Serializable{ if(secondDerivativeMemoryConsumptionRest && averageMemoryConsumptionReset){ memoryConsumptionReset = true; if(log.isDebugEnabled()){ - log.debug(String.format("Requests in flights stats are reset, ready to do scale check [network partition] %s" + log.debug(String.format("Memory consumption stats are reset, ready to do scale check [network partition] %s" , this.id)); } } @@ -365,7 +365,7 @@ public class NetworkPartitionContext implements Serializable{ if(secondDerivativeLoadAverageRest && gradientLoadAverageReset){ loadAverageReset = true; if(log.isDebugEnabled()){ - log.debug(String.format("Requests in flights stats are reset, ready to do scale check [network partition] %s" + log.debug(String.format("Load average stats are reset, ready to do scale check [network partition] %s" , this.id)); } } @@ -381,7 +381,7 @@ public class NetworkPartitionContext implements Serializable{ if(averageLoadAverageReset && gradientLoadAverageReset){ loadAverageReset = true; if(log.isDebugEnabled()){ - log.debug(String.format("Requests in flights stats are reset, ready to do scale check [network partition] %s" + log.debug(String.format("Load average stats are reset, ready to do scale check [network partition] %s" , this.id)); } } @@ -397,7 +397,7 @@ public class NetworkPartitionContext implements Serializable{ if(secondDerivativeLoadAverageRest && averageLoadAverageReset){ loadAverageReset = true; if(log.isDebugEnabled()){ - log.debug(String.format("Requests in flights stats are reset, ready to do scale check [network partition] %s" + log.debug(String.format("Load average stats are reset, ready to do scale check [network partition] %s" , this.id)); } }
