From 94237c2a21dbd016952afb69bdb83d3600328aac Mon Sep 17 00:00:00 2001 From: bn256 Date: Wed, 21 Aug 2024 21:10:25 +0900 Subject: [PATCH] Fix log when checking if it is a memo or not.# Please enter the commit message for your changes. Lines starting --- src/handler/handler.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/handler/handler.go b/src/handler/handler.go index 2fab298..1fd0c47 100644 --- a/src/handler/handler.go +++ b/src/handler/handler.go @@ -273,6 +273,7 @@ func (h *Handler) GetMemoHandler(c echo.Context) error { Response.CreatedAt = wikiContent.CreatedAt Response.UpdatedAt = wikiContent.UpdatedAt } else { + log.Printf("This wikiId exists, but it is not a 'memo'.") return c.NoContent(http.StatusNotFound) }