Tidy up log message (add space)

This commit is contained in:
Dave Syer 2013-10-15 16:51:58 -04:00
parent acf458b462
commit 837070d6e9

View File

@ -69,7 +69,7 @@ public abstract class SpringBootCondition implements Condition {
message.append("#");
message.append(methodMetadata.getMethodName());
}
message.append(result.isMatch() ? " matched" : "did not match");
message.append(result.isMatch() ? " matched" : " did not match");
if (StringUtils.hasLength(result.getMessage())) {
message.append(" due to ");
message.append(result.getMessage());