Skip to content

Commit

Permalink
Tweak to log
Browse files Browse the repository at this point in the history
  • Loading branch information
lbwexler committed Apr 10, 2024
1 parent 9f82b98 commit 57adebd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion grails-app/init/io/xh/toolbox/BootStrap.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ class BootStrap {
}

private void logStartupMsg() {
def buildLabel = appBuild != 'UNKNOWN' ? " [build $appBuild] " : " "

log.info("""
\n
______ ______ ______ __ ______ ______ __ __
Expand All @@ -69,7 +71,7 @@ class BootStrap {
\\ \\_\\ \\ \\_____\\ \\ \\_____\\ \\ \\_____\\ \\ \\_____\\ \\ \\_____\\ /\\_\\/\\_\\
\\/_/ \\/_____/ \\/_____/ \\/_____/ \\/_____/ \\/_____/ \\/_/\\/_/
\n
${appName} v${appVersion} [build ${appBuild}] - ${appEnvironment}
${appName} v${appVersion}${buildLabel}${appEnvironment}
\n
""")
}
Expand Down

0 comments on commit 57adebd

Please sign in to comment.