File tree 1 file changed +2
-2
lines changed
src/codegate/providers/copilot
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ def data_received(self, data: bytes) -> None:
431
431
Handle received data from client. Since we need to process the complete body
432
432
through our pipeline before forwarding, we accumulate the entire request first.
433
433
"""
434
- logger .info (f"Received data from { self .peername } : { data } " )
434
+ # logger.debug (f"Received data from {self.peername}: {data}")
435
435
try :
436
436
if not self ._check_buffer_size (data ):
437
437
self .send_error_response (413 , b"Request body too large" )
@@ -452,7 +452,7 @@ def data_received(self, data: bytes) -> None:
452
452
if self ._has_complete_body ():
453
453
# Process the complete request through the pipeline
454
454
complete_request = bytes (self .buffer )
455
- logger .debug (f"Complete request: { complete_request } " )
455
+ # logger.debug(f"Complete request: {complete_request}")
456
456
self .buffer .clear ()
457
457
asyncio .create_task (self ._forward_data_to_target (complete_request ))
458
458
You can’t perform that action at this time.
0 commit comments