You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bo...@apache.org on 2015/07/15 22:01:52 UTC

[1/4] storm git commit: Changing the log level from info to debug

Repository: storm
Updated Branches:
  refs/heads/master 6add48717 -> eb583bb50


Changing the log level from info to debug


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

Branch: refs/heads/master
Commit: 2d030413ab651140a3dd3655673b7bb81c1ce202
Parents: 98cbb34
Author: rfarivar <rf...@yahoo-inc.com>
Authored: Tue Jul 14 11:51:59 2015 -0500
Committer: rfarivar <rf...@yahoo-inc.com>
Committed: Tue Jul 14 11:51:59 2015 -0500

----------------------------------------------------------------------
 .../backtype/storm/utils/StormBoundedExponentialBackoffRetry.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/2d030413/storm-core/src/jvm/backtype/storm/utils/StormBoundedExponentialBackoffRetry.java
----------------------------------------------------------------------
diff --git a/storm-core/src/jvm/backtype/storm/utils/StormBoundedExponentialBackoffRetry.java b/storm-core/src/jvm/backtype/storm/utils/StormBoundedExponentialBackoffRetry.java
index 4aa5556..afb7e2c 100644
--- a/storm-core/src/jvm/backtype/storm/utils/StormBoundedExponentialBackoffRetry.java
+++ b/storm-core/src/jvm/backtype/storm/utils/StormBoundedExponentialBackoffRetry.java
@@ -44,7 +44,7 @@ public class StormBoundedExponentialBackoffRetry extends BoundedExponentialBacko
         expRetriesThreshold = 1;
         while ((1 << (expRetriesThreshold + 1)) < ((maxSleepTimeMs - baseSleepTimeMs) / 2))
             expRetriesThreshold++;
-        LOG.info("The baseSleepTimeMs [" + baseSleepTimeMs + "] the maxSleepTimeMs [" + maxSleepTimeMs + "] " +
+        LOG.debug("The baseSleepTimeMs [" + baseSleepTimeMs + "] the maxSleepTimeMs [" + maxSleepTimeMs + "] " +
                 "the maxRetries [" + maxRetries + "]");
         if (baseSleepTimeMs > maxSleepTimeMs) {
             LOG.warn("Misconfiguration: the baseSleepTimeMs [" + baseSleepTimeMs + "] can't be greater than " +


[3/4] storm git commit: Merge branch 'STORM-937' of https://github.com/rfarivar/storm into STORM-937

Posted by bo...@apache.org.
Merge branch 'STORM-937' of https://github.com/rfarivar/storm into STORM-937

STORM-937: Changing noisy log level from info to debug


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

Branch: refs/heads/master
Commit: e5fbb247311af07a820abb8bce3bff52c06b386b
Parents: 6add487 1b3e9ed
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Wed Jul 15 12:54:11 2015 -0500
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Wed Jul 15 12:54:11 2015 -0500

----------------------------------------------------------------------
 .../storm/utils/StormBoundedExponentialBackoffRetry.java         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------



[2/4] storm git commit: Addressing review comments

Posted by bo...@apache.org.
Addressing review comments


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

Branch: refs/heads/master
Commit: 1b3e9edfc6597f19cee8b73310c30c0c92739eda
Parents: 2d03041
Author: rfarivar <rf...@yahoo-inc.com>
Authored: Tue Jul 14 14:38:47 2015 -0500
Committer: rfarivar <rf...@yahoo-inc.com>
Committed: Tue Jul 14 14:38:47 2015 -0500

----------------------------------------------------------------------
 .../storm/utils/StormBoundedExponentialBackoffRetry.java         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/1b3e9edf/storm-core/src/jvm/backtype/storm/utils/StormBoundedExponentialBackoffRetry.java
----------------------------------------------------------------------
diff --git a/storm-core/src/jvm/backtype/storm/utils/StormBoundedExponentialBackoffRetry.java b/storm-core/src/jvm/backtype/storm/utils/StormBoundedExponentialBackoffRetry.java
index afb7e2c..5422c2e 100644
--- a/storm-core/src/jvm/backtype/storm/utils/StormBoundedExponentialBackoffRetry.java
+++ b/storm-core/src/jvm/backtype/storm/utils/StormBoundedExponentialBackoffRetry.java
@@ -44,8 +44,8 @@ public class StormBoundedExponentialBackoffRetry extends BoundedExponentialBacko
         expRetriesThreshold = 1;
         while ((1 << (expRetriesThreshold + 1)) < ((maxSleepTimeMs - baseSleepTimeMs) / 2))
             expRetriesThreshold++;
-        LOG.debug("The baseSleepTimeMs [" + baseSleepTimeMs + "] the maxSleepTimeMs [" + maxSleepTimeMs + "] " +
-                "the maxRetries [" + maxRetries + "]");
+        LOG.debug("The baseSleepTimeMs [{}] the maxSleepTimeMs [{}] the maxRetries [{}]", 
+				baseSleepTimeMs, maxSleepTimeMs, maxRetries);
         if (baseSleepTimeMs > maxSleepTimeMs) {
             LOG.warn("Misconfiguration: the baseSleepTimeMs [" + baseSleepTimeMs + "] can't be greater than " +
                     "the maxSleepTimeMs [" + maxSleepTimeMs + "].");


[4/4] storm git commit: Added STORM-937 to changelog and readme

Posted by bo...@apache.org.
Added STORM-937 to changelog and readme


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

Branch: refs/heads/master
Commit: eb583bb5071ae045c28a65b6af4a0eb56e0c2a9c
Parents: e5fbb24
Author: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Authored: Wed Jul 15 15:01:13 2015 -0500
Committer: Robert (Bobby) Evans <ev...@yahoo-inc.com>
Committed: Wed Jul 15 15:01:13 2015 -0500

----------------------------------------------------------------------
 CHANGELOG.md    | 1 +
 README.markdown | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/eb583bb5/CHANGELOG.md
----------------------------------------------------------------------
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b2668bc..3c3ce9b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,7 @@
  * STORM-912: Support SSL on Logviewer
  * STORM-934: The current doc for topology ackers is outdated
  * STORM-160: Allow ShellBolt to set env vars (particularly PATH)
+ * STORM-937: Changing noisy log level from info to debug
 
 ## 0.10.0-beta2
  * STORM-843: [storm-redis] Add Javadoc to storm-redis

http://git-wip-us.apache.org/repos/asf/storm/blob/eb583bb5/README.markdown
----------------------------------------------------------------------
diff --git a/README.markdown b/README.markdown
index 53095c4..0f1cb88 100644
--- a/README.markdown
+++ b/README.markdown
@@ -203,6 +203,7 @@ under the License.
 * Paul Poulosky ([@ppoulosk](https://github.com/ppoulosk))
 * Brendan W. Lyon ([@lyonbrw](https://github.com/lyonbrw))
 * Shyam Rajendran ([@bourneagain](https://github.com/bourneagain))
+* Reza Farivar ([@rfarivar](https://github.com/rfarivar))
 
 ## Acknowledgements