From e458f2ab537a3e7ed9d0a8566ad6aeec0e68ba67 Mon Sep 17 00:00:00 2001 From: MadDogOwner Date: Fri, 1 Aug 2025 13:43:41 +0800 Subject: [PATCH] fix(bootstrap): add newline after initial admin password output (#943) fix(bootstrap): add newline after initial admin password output --- internal/bootstrap/data/user.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/bootstrap/data/user.go b/internal/bootstrap/data/user.go index 275ddd88..00b89909 100644 --- a/internal/bootstrap/data/user.go +++ b/internal/bootstrap/data/user.go @@ -41,7 +41,7 @@ func initUser() { } else { // DO NOT output the password to log file. Only output to console. // utils.Log.Infof("Successfully created the admin user and the initial password is: %s", adminPassword) - fmt.Printf("Successfully created the admin user and the initial password is: %s", adminPassword) + fmt.Printf("Successfully created the admin user and the initial password is: %s\n", adminPassword) } } else { utils.Log.Fatalf("[init user] Failed to get admin user: %v", err)