From 49564e2e5ed116d93c441ee4199276f7dd6952aa Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Tue, 5 May 2026 20:24:32 +0200 Subject: [PATCH] Remove printf Signed-off-by: Pol Henarejos --- src/usb/lwip/rest.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/usb/lwip/rest.c b/src/usb/lwip/rest.c index 241fcf9..598e077 100644 --- a/src/usb/lwip/rest.c +++ b/src/usb/lwip/rest.c @@ -313,7 +313,6 @@ bool rest_supported_content_type(const char *content_type) { "application/json", "application/x-pem-file" }; - printf("[rest] Checking content type: %s\n", content_type); for (size_t i = 0; i < sizeof(supported_types) / sizeof(supported_types[0]); i++) { if (strncasecmp(content_type, supported_types[i], strlen(supported_types[i])) == 0) { return true;