Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit 135f136

Browse files
committed
Comment out Received data from
Sometimes these can be huge and overbearing in the logs. If anyone needs for debugging they can uncomment
1 parent 05c2574 commit 135f136

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/codegate/providers/copilot/provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ def data_received(self, data: bytes) -> None:
431431
Handle received data from client. Since we need to process the complete body
432432
through our pipeline before forwarding, we accumulate the entire request first.
433433
"""
434-
logger.info(f"Received data from {self.peername}: {data}")
434+
# logger.debug(f"Received data from {self.peername}: {data}")
435435
try:
436436
if not self._check_buffer_size(data):
437437
self.send_error_response(413, b"Request body too large")

0 commit comments

Comments
 (0)