Skip to content

Commit e458f2a

Browse files
authored
fix(bootstrap): add newline after initial admin password output (#943)
fix(bootstrap): add newline after initial admin password output
1 parent a5a22e7 commit e458f2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/bootstrap/data/user.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func initUser() {
4141
} else {
4242
// DO NOT output the password to log file. Only output to console.
4343
// utils.Log.Infof("Successfully created the admin user and the initial password is: %s", adminPassword)
44-
fmt.Printf("Successfully created the admin user and the initial password is: %s", adminPassword)
44+
fmt.Printf("Successfully created the admin user and the initial password is: %s\n", adminPassword)
4545
}
4646
} else {
4747
utils.Log.Fatalf("[init user] Failed to get admin user: %v", err)

0 commit comments

Comments
 (0)