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;