diff --git a/src/main/java/com/safetypin/authentication/service/AuthenticationService.java b/src/main/java/com/safetypin/authentication/service/AuthenticationService.java index 0af2bedc114cf334ca6c0febe0487e0e1f5ff361..dce7ad426f2bcf0e694cd80cd8dea7102b95df61 100644 --- a/src/main/java/com/safetypin/authentication/service/AuthenticationService.java +++ b/src/main/java/com/safetypin/authentication/service/AuthenticationService.java @@ -126,6 +126,7 @@ public class AuthenticationService { if (!user.isVerified()) { return "Your account is not verified. Please complete OTP verification. You may request a new OTP after 2 minutes."; } + logger.info("AuthenticationService.postContent :: Content posted: {}", content); // For demo purposes, we assume the post is successful. return "Content posted successfully"; }