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/10 23:32:06 UTC

[geode] branch debug-alter-runtime updated: 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


The following commit(s) were added to refs/heads/debug-alter-runtime by this push:
     new 063b988  why is jetty not starting
063b988 is described below

commit 063b988ad82e7f8fd4760d3cde2b34a113fb6d46
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();
       }
     }