From 7cbd57b6359b2ca7f53f7e5e5eee8fe834fc19bd Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 6 Jan 2021 17:26:49 -0800 Subject: [PATCH] Log FailureAnalyzer errors at trace level Update `FailureAnalyzers` to log errors at `trace` rather than `debug`. This should reduce noise when an analyzer unexpectedly fails and the user is running with `--debug`. Fixes gh-24630 --- .../springframework/boot/diagnostics/FailureAnalyzers.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/diagnostics/FailureAnalyzers.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/diagnostics/FailureAnalyzers.java index 86932077fa3c..91540b3766c0 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/diagnostics/FailureAnalyzers.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/diagnostics/FailureAnalyzers.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2019 the original author or authors. + * Copyright 2012-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -114,7 +114,7 @@ private FailureAnalysis analyze(Throwable failure, List analyze } } catch (Throwable ex) { - logger.debug(LogMessage.format("FailureAnalyzer %s failed", analyzer), ex); + logger.trace(LogMessage.format("FailureAnalyzer %s failed", analyzer), ex); } } return null;