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

Reduce from info to debug #368

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/codegate/providers/copilot/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ async def process_body(self, headers: list[str], body: bytes) -> Tuple[bytes, Pi
# the pipeline did modify the request, return to the user
# in the original LLM format
body = self.normalizer.denormalize(result.request)
logger.info(f"Pipeline processed request: {body}")
logger.debug(f"Pipeline processed request: {body}")

return body, result.context
except Exception as e:
Expand Down
Loading