Merge branch '2.1.x'

Closes gh-18682
This commit is contained in:
Stephane Nicoll
2019-10-22 09:41:04 +02:00
5 changed files with 19 additions and 7 deletions

View File

@@ -113,7 +113,9 @@ final class FailureAnalyzers implements SpringBootExceptionReporter {
}
}
catch (Throwable ex) {
logger.debug("FailureAnalyzer " + analyzer + " failed", ex);
if (logger.isDebugEnabled()) {
logger.debug("FailureAnalyzer " + analyzer + " failed", ex);
}
}
}
return null;