mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-19 04:06:18 +08:00
fix(bootstrap): add newline after initial admin password output (#943)
fix(bootstrap): add newline after initial admin password output
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user