We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 28fb382 + 109ca9e commit fd1c744Copy full SHA for fd1c744
grails-core/src/main/groovy/grails/boot/GrailsBanner.groovy
@@ -65,8 +65,8 @@ class GrailsBanner implements Banner {
65
def art = createBannerArt(environment)
66
bannerWidth = longestLineLength(art) ?: FALLBACK_BANNER_WIDTH
67
out.println(art)
68
+ artPaddingBottom.times { out.println() }
69
}
- artPaddingBottom.times { out.println() }
70
if (shouldDisplayVersions(environment)) {
71
createVersionsFormatter().format(createBannerVersions(environment), bannerWidth)
72
.forEach { out.println(it) }
0 commit comments