Skip to content

Commit 935a4b3

Browse files
committed
feat: add logging for successful user sign-up in SignUpService
1 parent 0fff27b commit 935a4b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/life/mosu/mosuserver/application/auth/SignUpService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class SignUpService {
2323
@Transactional
2424
public Token signUp(final SignUpAccountRequest request) {
2525
UserJpaEntity user = doAccountStep(request);
26-
26+
log.info("User signed up successfully: {}", user);
2727
return authTokenManager.generateAuthToken(user);
2828
}
2929

0 commit comments

Comments
 (0)