Merge branch '2.4.x'

This commit is contained in:
Stephane Nicoll 2021-01-15 14:37:25 +01:00
commit 1a2a3d6598
2 changed files with 2 additions and 2 deletions

View File

@ -8442,7 +8442,7 @@ The following example shows how to use the `ConditionEvaluationReportLoggingList
[source,java,indent=0]
----
@Test
public void autoConfigTest {
void autoConfigTest() {
ConditionEvaluationReportLoggingListener initializer = new ConditionEvaluationReportLoggingListener(
LogLevel.INFO);
ApplicationContextRunner contextRunner = new ApplicationContextRunner()

View File

@ -286,7 +286,7 @@ public class JettyWebServer implements WebServer {
.invokeMethod(ReflectionUtils.findMethod(connector.getClass(), "getLocalPort"), connector);
}
catch (Exception ex) {
logger.info("could not determine port ( " + ex.getMessage() + ")");
logger.info("could not determine port (" + ex.getMessage() + ")");
}
return 0;
}