Skip to content

Commit 3241a84

Browse files
Change property endpoints.loggers.enabled to management.endpoint.loggers.enabled to align with Spring Boot's logging endpoint configuration
Co-authored-by: Timothy Spriegade <timothy.spriegade@otto.de>
1 parent b2d2776 commit 3241a84

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release Notes
22

3+
## 4.1.0.3
4+
* **[core]**: Change property `endpoints.loggers.enabled` to `management.endpoint.loggers.enabled` to align with Spring Boot's logging endpoint configuration
5+
36
## 4.1.0.2
47
* **[jobs]**: Fix broken JavaScript functionality on job pages caused by missing ES module support
58
* **[jobs, core]**: Replace `var` with `const`/`let` in JavaScript files (`datetime.js`, `jobs.js`, `logLoader.js`) to improve code quality

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jreleaser {
8383
// This adds a GitHub release for every new release: https://github.com/otto-de/edison-microservice/releases
8484
//
8585
//
86-
def edison_version = "4.1.0.3-SNAPSHOT" // <--- SET AND UPDATE EDISON VERSION HERE
86+
def edison_version = "4.1.0.3" // <--- SET AND UPDATE EDISON VERSION HERE
8787
//
8888
//
8989
//

edison-core/src/main/java/de/otto/edison/logging/ui/LoggersConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* @since 1.1.0
1313
*/
1414
@AutoConfiguration
15-
@ConditionalOnProperty(name = "endpoints.loggers.enabled", havingValue = "true")
15+
@ConditionalOnProperty(name = "management.endpoint.loggers.enabled", havingValue = "true")
1616
@EnableConfigurationProperties(EdisonApplicationProperties.class)
1717
public class LoggersConfiguration {
1818

0 commit comments

Comments
 (0)