From 3fb21ae079f7c3390844c4f7a6841b5d34cb833a Mon Sep 17 00:00:00 2001 From: Ivan FB <128452529+Ivansete-status@users.noreply.github.com> Date: Fri, 18 Jul 2025 16:46:44 +0200 Subject: [PATCH] avoid too large log lines in rest kightpush (#3516) --- waku/waku_api/rest/lightpush/handlers.nim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/waku/waku_api/rest/lightpush/handlers.nim b/waku/waku_api/rest/lightpush/handlers.nim index a724aa1c9..e1f950dc7 100644 --- a/waku/waku_api/rest/lightpush/handlers.nim +++ b/waku/waku_api/rest/lightpush/handlers.nim @@ -66,7 +66,8 @@ proc installLightPushRequestHandler*( contentBody: Option[ContentBody] ) -> RestApiResponse: ## Send a request to push a waku message - debug "post", ROUTE_LIGHTPUSH, contentBody + debug "post received", ROUTE_LIGHTPUSH + trace "content body", ROUTE_LIGHTPUSH, contentBody let req: PushRequest = decodeRequestBody[PushRequest](contentBody).valueOr: return