You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@unomi.apache.org by dg...@apache.org on 2017/11/15 15:59:10 UTC

incubator-unomi git commit: Add debug logger to ease unomi setup

Repository: incubator-unomi
Updated Branches:
  refs/heads/master 4cf1f64bd -> f02e87e59


Add debug logger to ease unomi setup


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

Branch: refs/heads/master
Commit: f02e87e59d66b8faec8a8a05aad2aa5172ba6f16
Parents: 4cf1f64
Author: dgaillard <dg...@jahia.com>
Authored: Wed Nov 15 16:59:05 2017 +0100
Committer: dgaillard <dg...@jahia.com>
Committed: Wed Nov 15 16:59:05 2017 +0100

----------------------------------------------------------------------
 .../java/org/apache/unomi/services/services/EventServiceImpl.java   | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-unomi/blob/f02e87e5/services/src/main/java/org/apache/unomi/services/services/EventServiceImpl.java
----------------------------------------------------------------------
diff --git a/services/src/main/java/org/apache/unomi/services/services/EventServiceImpl.java b/services/src/main/java/org/apache/unomi/services/services/EventServiceImpl.java
index 77464db..338003a 100644
--- a/services/src/main/java/org/apache/unomi/services/services/EventServiceImpl.java
+++ b/services/src/main/java/org/apache/unomi/services/services/EventServiceImpl.java
@@ -121,6 +121,7 @@ public class EventServiceImpl implements EventService {
     }
 
     public String authenticateThirdPartyServer(String key, String ip) {
+        logger.debug("Authenticating third party server with key: " + key + " and IP: " + ip);
         if (key != null) {
             for (Map.Entry<String, ThirdPartyServer> entry : thirdPartyServers.entrySet()) {
                 ThirdPartyServer server = entry.getValue();