You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@unomi.apache.org by jk...@apache.org on 2020/12/14 15:24:59 UTC

[unomi] branch unomi-1.5.x updated: UNOMI-408: fix debug log in SetRemoteHostInfoAction (#226)

This is an automated email from the ASF dual-hosted git repository.

jkevan pushed a commit to branch unomi-1.5.x
in repository https://gitbox.apache.org/repos/asf/unomi.git


The following commit(s) were added to refs/heads/unomi-1.5.x by this push:
     new 15f2592  UNOMI-408: fix debug log in SetRemoteHostInfoAction (#226)
15f2592 is described below

commit 15f25925604dcf4116f273f7c244f61de65bca25
Author: kevan Jahanshahi <ke...@jahia.com>
AuthorDate: Mon Dec 14 16:14:43 2020 +0100

    UNOMI-408: fix debug log in SetRemoteHostInfoAction (#226)
---
 .../apache/unomi/plugins/request/actions/SetRemoteHostInfoAction.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plugins/request/src/main/java/org/apache/unomi/plugins/request/actions/SetRemoteHostInfoAction.java b/plugins/request/src/main/java/org/apache/unomi/plugins/request/actions/SetRemoteHostInfoAction.java
index 34f9fd4..02c6f53 100644
--- a/plugins/request/src/main/java/org/apache/unomi/plugins/request/actions/SetRemoteHostInfoAction.java
+++ b/plugins/request/src/main/java/org/apache/unomi/plugins/request/actions/SetRemoteHostInfoAction.java
@@ -120,7 +120,7 @@ public class SetRemoteHostInfoAction implements ActionExecutor {
         }
         String remoteAddrParameter = httpServletRequest.getParameter("remoteAddr");
         if (logger.isDebugEnabled()) {
-            logger.debug("Remote address param is " + remoteAddr);
+            logger.debug("Remote address param is " + remoteAddrParameter);
         }
         String xff = httpServletRequest.getHeader("X-Forwarded-For");
         if (logger.isDebugEnabled()) {