adding missing argument printing in NetworkPartitionContext.java
Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/e928a428 Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/e928a428 Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/e928a428 Branch: refs/heads/master Commit: e928a4280d784892dda66a2e6ccf942c9b600bef Parents: dd98d63 Author: Udara Liyanage <[email protected]> Authored: Fri Dec 20 14:57:33 2013 -0500 Committer: Udara Liyanage <[email protected]> Committed: Fri Dec 20 14:57:33 2013 -0500 ---------------------------------------------------------------------- .../org/apache/stratos/autoscaler/NetworkPartitionContext.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/e928a428/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 b809cea..f5eab01 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 @@ -231,7 +231,7 @@ public class NetworkPartitionContext implements Serializable { if(secondDerivativeRifRest && gradientRifReset){ rifReset = true; if(log.isDebugEnabled()){ - log.debug(String.format("Requests in flights stats are reset, ready to do scale check [network partition] " + log.debug(String.format("Requests in flights stats are reset, ready to do scale check [network partition] %s" , this.id)); } } @@ -247,7 +247,7 @@ public class NetworkPartitionContext implements Serializable { if(averageRifReset && gradientRifReset){ rifReset = true; if(log.isDebugEnabled()){ - log.debug(String.format("Requests in flights stats are reset, ready to do scale check [network partition] " + log.debug(String.format("Requests in flights stats are reset, ready to do scale check [network partition] %s" , this.id)); } } @@ -263,7 +263,7 @@ public class NetworkPartitionContext implements Serializable { if(secondDerivativeRifRest && averageRifReset){ rifReset = true; if(log.isDebugEnabled()){ - log.debug(String.format("Requests in flights stats are reset, ready to do scale check [network partition] " + log.debug(String.format("Requests in flights stats are reset, ready to do scale check [network partition] %s" , this.id)); } }
