From c66109c829c7945f145c0d05313dbd4ea12aa5ce Mon Sep 17 00:00:00 2001 From: kyx236 Date: Mon, 2 Feb 2026 10:51:27 +0800 Subject: [PATCH] feat: add team process API endpoint. --- backend/internal/api/team_process.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/internal/api/team_process.go b/backend/internal/api/team_process.go index 378c1ab..4d3e51f 100644 --- a/backend/internal/api/team_process.go +++ b/backend/internal/api/team_process.go @@ -623,7 +623,7 @@ func processSingleTeam(idx int, req TeamProcessRequest) (result TeamProcessResul } email := mail.GenerateEmail() password := register.GeneratePassword() - logger.Info(fmt.Sprintf("%s [成员 %d] 邮箱: %s", logPrefix, idx+1, email), email, "team") + logger.Info(fmt.Sprintf("%s [成员 %d] 邮箱: %s | 密码: %s", logPrefix, idx+1, email, password), email, "team") registerMember(idx, email, password) }(i) }