Skip to content

Commit

Permalink
Add prefix newline before the Spring banner
Browse files Browse the repository at this point in the history
  • Loading branch information
Eng-Fouad committed May 23, 2024
1 parent b607c04 commit e0cc062
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ class SpringBootBanner implements Banner {

@Override
public void printBanner(Environment environment, Class<?> sourceClass, PrintStream printStream) {
printStream.println();
printStream.println(BANNER);
String version = String.format(" (v%s)", SpringBootVersion.getVersion());
StringBuilder padding = new StringBuilder();
Expand Down

0 comments on commit e0cc062

Please sign in to comment.