Commit b94d1645 by Johannes Edmeier

Fix wrong path of loggers endpoint

fixes #477
parent a92150d4
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<jmxConfigurator/>
</configuration>
\ No newline at end of file
...@@ -39,7 +39,7 @@ module.run(function (ApplicationViews, $sce, $http) { ...@@ -39,7 +39,7 @@ module.run(function (ApplicationViews, $sce, $http) {
title: $sce.trustAsHtml('<i class="fa fa-sliders fa-fw"></i>Logging'), title: $sce.trustAsHtml('<i class="fa fa-sliders fa-fw"></i>Logging'),
state: 'applications.logging', state: 'applications.logging',
show: function (application) { show: function (application) {
return $http.head('api/applications/' + application.id + '/logging').then(function () { return $http.head('api/applications/' + application.id + '/loggers').then(function () {
return true; return true;
}).catch(function () { }).catch(function () {
return $http.head('api/applications/' + application.id + '/jolokia').then(function () { return $http.head('api/applications/' + application.id + '/jolokia').then(function () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment