You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apex.apache.org by th...@apache.org on 2015/08/29 00:02:25 UTC

[09/11] incubator-apex-core git commit: SPOI-5559 fixed NPE in auto publish of apps

SPOI-5559 fixed NPE in auto publish of apps


Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/commit/74884441
Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/tree/74884441
Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/diff/74884441

Branch: refs/heads/devel-3
Commit: 74884441e642f06f3f3576291c23796d6cddc57e
Parents: 0913456
Author: David Yan <da...@datatorrent.com>
Authored: Mon Jul 20 13:02:56 2015 -0700
Committer: David Yan <da...@datatorrent.com>
Committed: Fri Aug 28 10:56:57 2015 -0700

----------------------------------------------------------------------
 PubSubWebSocketServlet.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/74884441/PubSubWebSocketServlet.java
----------------------------------------------------------------------
diff --git a/PubSubWebSocketServlet.java b/PubSubWebSocketServlet.java
index 842f7f6..b039f44 100644
--- a/PubSubWebSocketServlet.java
+++ b/PubSubWebSocketServlet.java
@@ -194,7 +194,7 @@ public class PubSubWebSocketServlet extends WebSocketServlet
       return;
     }
     else {
-      LOG.info("Subscribe is allowed for topic {}, user {}", topic, webSocket.getPrincipal());
+      LOG.debug("Subscribe is allowed for topic {}, user {}", topic, webSocket.getPrincipal());
     }
 
     HashSet<PubSubWebSocket> wsSet;