See gh-24837
This commit is contained in:
Stephane Nicoll 2021-01-15 14:36:04 +01:00
parent 9343633582
commit e8ae18ae11
2 changed files with 2 additions and 2 deletions

View File

@ -8460,7 +8460,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;
}