From 0f0321aee14412958960b609c495af0be993711c Mon Sep 17 00:00:00 2001 From: Patrick Britton Date: Sun, 1 Feb 2026 00:05:52 -0600 Subject: [PATCH] Add debug log to GetPost handler to track API calls --- go-backend/internal/handlers/post_handler.go | 1 + 1 file changed, 1 insertion(+) diff --git a/go-backend/internal/handlers/post_handler.go b/go-backend/internal/handlers/post_handler.go index ea9eadb..c144253 100644 --- a/go-backend/internal/handlers/post_handler.go +++ b/go-backend/internal/handlers/post_handler.go @@ -295,6 +295,7 @@ func (h *PostHandler) GetProfilePosts(c *gin.Context) { } func (h *PostHandler) GetPost(c *gin.Context) { + log.Error().Msg("=== DEBUG: GetPost handler called ===") postID := c.Param("id") userIDStr, _ := c.Get("user_id")