fix(bootstrap): add newline after initial admin password output (#943)

fix(bootstrap): add newline after initial admin  password output
This commit is contained in:
MadDogOwner
2025-08-01 13:43:41 +08:00
committed by GitHub
parent a5a22e7085
commit e458f2ab53

View File

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