You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by je...@apache.org on 2018/08/13 15:20:14 UTC

[geode] 03/05: why is jetty not starting

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

jensdeppe pushed a commit to branch debug-alter-runtime
in repository https://gitbox.apache.org/repos/asf/geode.git

commit c22cff2cca63ebf93e7a34043f99c6d097ccfd00
Author: Jens Deppe <jd...@pivotal.io>
AuthorDate: Fri Aug 10 16:31:52 2018 -0700

    why is jetty not starting
---
 .../src/main/java/org/apache/geode/management/internal/AgentUtil.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geode-core/src/main/java/org/apache/geode/management/internal/AgentUtil.java b/geode-core/src/main/java/org/apache/geode/management/internal/AgentUtil.java
index 95e40dc..d22f5b2 100755
--- a/geode-core/src/main/java/org/apache/geode/management/internal/AgentUtil.java
+++ b/geode-core/src/main/java/org/apache/geode/management/internal/AgentUtil.java
@@ -81,7 +81,7 @@ public class AgentUtil {
       URL url = this.getClass().getClassLoader().getResource(possibleFile);
       if (url != null) {
         // found the war file
-        logger.info(warFilePrefix + " war found: {}", possibleFile);
+        logger.info(warFilePrefix + " war found: {}", url.getPath());
         return url.getPath();
       }
     }