Skip to content

Commit b94d164

Browse files
committed
Fix wrong path of loggers endpoint
fixes codecentric#477
1 parent a92150d commit b94d164

File tree

2 files changed

+1
-6
lines changed
  • spring-boot-admin-samples/spring-boot-admin-sample/src/main/resources
  • spring-boot-admin-server-ui/modules/applications-logging

2 files changed

+1
-6
lines changed

spring-boot-admin-samples/spring-boot-admin-sample/src/main/resources/logback-spring.xml

-5
This file was deleted.

spring-boot-admin-server-ui/modules/applications-logging/module.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module.run(function (ApplicationViews, $sce, $http) {
3939
title: $sce.trustAsHtml('<i class="fa fa-sliders fa-fw"></i>Logging'),
4040
state: 'applications.logging',
4141
show: function (application) {
42-
return $http.head('api/applications/' + application.id + '/logging').then(function () {
42+
return $http.head('api/applications/' + application.id + '/loggers').then(function () {
4343
return true;
4444
}).catch(function () {
4545
return $http.head('api/applications/' + application.id + '/jolokia').then(function () {

0 commit comments

Comments
 (0)