Skip to content

Commit

Permalink
change logging to debug instead of warning
Browse files Browse the repository at this point in the history
  • Loading branch information
wenzhe-log10 committed Jun 13, 2024
1 parent 4c5ed79 commit e869e7b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions log10/_httpx_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,11 @@ def format_anthropic_tools_request(request_content) -> str:
async def get_completion_id(request: Request):
host = request.headers.get("host")
if "anthropic" in host and "/v1/messages" not in str(request.url):
logger.warning("Currently logging is only available for anthropic v1/messages.")
logger.debug("Currently logging is only available for anthropic v1/messages.")
return

if "openai" in host and "v1/chat/completions" not in str(request.url):
logger.warning("Currently logging is only available for openai v1/chat/completions.")
logger.debug("Currently logging is only available for openai v1/chat/completions.")
return

request.headers["x-log10-completion-id"] = str(uuid.uuid4())
Expand Down Expand Up @@ -209,7 +209,7 @@ async def log_request(request: Request):
orig_module = "anthropic.resources.messages"
orig_qualname = "Messages.stream"
else:
logger.warning("Currently logging is only available for async openai and anthropic.")
logger.debug("Currently logging is only available for async openai and anthropic.")
return
log_row = {
"status": "started",
Expand Down Expand Up @@ -318,7 +318,7 @@ def is_response_end_reached(self, text: str):
elif "openai" in host:
return self.is_openai_response_end_reached(text)
else:
logger.warning("Currently logging is only available for async openai and anthropic.")
logger.debug("Currently logging is only available for async openai and anthropic.")
return False

def is_anthropic_response_end_reached(self, text: str):
Expand Down Expand Up @@ -447,7 +447,7 @@ def parse_response_data(self, responses: list[str]):
elif "anthropic" in host:
return self.parse_anthropic_responses(responses)
else:
logger.warning("Currently logging is only available for async openai and anthropic.")
logger.debug("Currently logging is only available for async openai and anthropic.")
return None


Expand Down

0 comments on commit e869e7b

Please sign in to comment.