diff --git a/src/main/java/com/safetypin/authentication/service/AuthenticationService.java b/src/main/java/com/safetypin/authentication/service/AuthenticationService.java
index ebeb3932ddc2162aaf0ccfc32367af6189fe9a0b..88df72f17cf91dd8d772669fa4f5bf52b45816d8 100644
--- a/src/main/java/com/safetypin/authentication/service/AuthenticationService.java
+++ b/src/main/java/com/safetypin/authentication/service/AuthenticationService.java
@@ -143,7 +143,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 by user with email: {}", email);
+        logger.info("AuthenticationService.postContent :: Content {} posted by user with email: {}", content, email);
         // For demo purposes, we assume the post is successful.
         return "Content posted successfully";
     }