From 430b0f07cdc6668b5130e73662bd3cb63e1d1730 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9=20=D0=A1=D0=B0?= =?UTF-8?q?=D0=B5=D0=BD=D0=BA=D0=BE?= Date: Thu, 23 Oct 2025 15:50:29 +0300 Subject: [PATCH] fix --- web/service/inbound.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/service/inbound.go b/web/service/inbound.go index 04dd2851..798f12ea 100644 --- a/web/service/inbound.go +++ b/web/service/inbound.go @@ -2446,7 +2446,7 @@ func (s *InboundService) syncWithSlaves(method string, path string, contentType form.Set(key, fmt.Sprintf("%v", value)) } default: - logger.Warningf("Unsupported body type for form encoding on server %s", server.Name) + logger.Warningf("Unsupported body type: %T for form encoding on server %s", v, server.Name) continue } bodyReader = strings.NewReader(form.Encode())