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.
This commit is contained in:
Marvin Zhang
2024-12-25 14:22:18 +08:00
parent 2a33bd40f5
commit 9e67e50c6c

View File

@@ -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()
}