From edd040c9d4c96241aaa17c03e6dc7c8ea47593e8 Mon Sep 17 00:00:00 2001 From: hmelder Date: Mon, 4 Mar 2024 15:46:07 +0100 Subject: [PATCH] Remove logging from HKHTTPServer --- Libraries/MicroHTTPKit/Source/HKHTTPServer.m | 3 --- 1 file changed, 3 deletions(-) diff --git a/Libraries/MicroHTTPKit/Source/HKHTTPServer.m b/Libraries/MicroHTTPKit/Source/HKHTTPServer.m index 32cb172..58ab4a2 100644 --- a/Libraries/MicroHTTPKit/Source/HKHTTPServer.m +++ b/Libraries/MicroHTTPKit/Source/HKHTTPServer.m @@ -112,9 +112,6 @@ static enum MHD_Result accessHandler(void *cls, struct MHD_Connection *connectio request = (__bridge HKHTTPRequest *) (*con_cls); } - NSLog(@"Request body size: %lu", *upload_data_size); - NSLog(@"Headers: %@", [request headers]); - // If we have upload data, we need to process it. Otherwise, we can continue // processing the request. if (*upload_data_size != 0) {