You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2014/03/20 22:22:41 UTC

[18/50] [abbrv] git commit: RollingCountBolt: use log level DEBUG to tell that a tick tuple was received

RollingCountBolt: use log level DEBUG to tell that a tick tuple was received


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

Branch: refs/heads/master
Commit: 8e1e3cc1ced2e785c2ce47fd8708dcf2c5a2e8ec
Parents: 2ace708
Author: Michael G. Noll <mn...@verisign.com>
Authored: Thu Aug 29 12:20:40 2013 +0200
Committer: Michael G. Noll <mn...@verisign.com>
Committed: Thu Aug 29 12:20:40 2013 +0200

----------------------------------------------------------------------
 src/jvm/storm/starter/bolt/RollingCountBolt.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/8e1e3cc1/src/jvm/storm/starter/bolt/RollingCountBolt.java
----------------------------------------------------------------------
diff --git a/src/jvm/storm/starter/bolt/RollingCountBolt.java b/src/jvm/storm/starter/bolt/RollingCountBolt.java
index 848fedb..0066b61 100644
--- a/src/jvm/storm/starter/bolt/RollingCountBolt.java
+++ b/src/jvm/storm/starter/bolt/RollingCountBolt.java
@@ -80,7 +80,7 @@ public class RollingCountBolt extends BaseRichBolt {
     @Override
     public void execute(Tuple tuple) {
         if (TupleHelpers.isTickTuple(tuple)) {
-            LOG.info("Received tick tuple, triggering emit of current window counts");
+            LOG.debug("Received tick tuple, triggering emit of current window counts");
             emitCurrentWindowCounts();
         }
         else {