You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by da...@apache.org on 2015/05/04 18:41:39 UTC

activemq git commit: AMQ-5760: ActiveMQ - Output url to the rest api when starting AMQ

Repository: activemq
Updated Branches:
  refs/heads/master b77eba471 -> 9b3d651b3


AMQ-5760: ActiveMQ - Output url to the rest api when starting AMQ


Project: http://git-wip-us.apache.org/repos/asf/activemq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/9b3d651b
Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/9b3d651b
Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/9b3d651b

Branch: refs/heads/master
Commit: 9b3d651b3851546167c14e21ab95035656e410e6
Parents: b77eba4
Author: Claus Ibsen <cl...@gmail.com>
Authored: Mon May 4 18:45:24 2015 +0200
Committer: Claus Ibsen <cl...@gmail.com>
Committed: Mon May 4 18:45:24 2015 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/activemq/web/WebConsoleStarter.java    | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq/blob/9b3d651b/activemq-web-console/src/main/java/org/apache/activemq/web/WebConsoleStarter.java
----------------------------------------------------------------------
diff --git a/activemq-web-console/src/main/java/org/apache/activemq/web/WebConsoleStarter.java b/activemq-web-console/src/main/java/org/apache/activemq/web/WebConsoleStarter.java
index 8ec8e22..875492f 100644
--- a/activemq-web-console/src/main/java/org/apache/activemq/web/WebConsoleStarter.java
+++ b/activemq-web-console/src/main/java/org/apache/activemq/web/WebConsoleStarter.java
@@ -52,6 +52,7 @@ public class WebConsoleStarter implements ServletContextListener {
             String host = System.getProperty("jetty.host");
             if (host != null && port != null) {
                 LOG.info("ActiveMQ WebConsole available at http://{}:{}/", host, port);
+                LOG.info("ActiveMQ Jolokia REST API available at http://{}:{}/api/jolokia/", host, port);
             }
         }