From 9e67e50c6ca7cfabee3d9c2a353af8628e396dc2 Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Wed, 25 Dec 2024 14:22:18 +0800 Subject: [PATCH] fix: add new line after logo and welcome info prints - Added a new line after the logo and welcome information prints in the PrintLogoWithWelcomeInfo function to improve output readability. - This change enhances the user experience by ensuring that the printed information is visually separated, making it easier to read during server startup. --- core/utils/logo.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/utils/logo.go b/core/utils/logo.go index b0ea6b3f..91c6dcbd 100644 --- a/core/utils/logo.go +++ b/core/utils/logo.go @@ -12,6 +12,7 @@ func PrintLogoWithWelcomeInfo() { func printLogo() { figure.NewColorFigure("Crawlab", "slant", "blue", true).Print() + fmt.Println() } func printWelcomeInfo() { @@ -23,4 +24,5 @@ func printWelcomeInfo() { if IsMaster() { fmt.Println("Visit https://localhost:8080 for the web ui, once the server is ready.") } + fmt.Println() }