Unverified Commit 5afb387b authored by Tyler Michael Smith's avatar Tyler Michael Smith Committed by GitHub
Browse files

Change "following fields were present in the request but ignored" log from warn to debug (#36173)


Signed-off-by: default avatarTyler Michael Smith <tlrmchlsmth@gmail.com>
parent 43e77e59
...@@ -49,7 +49,7 @@ class OpenAIBaseModel(BaseModel): ...@@ -49,7 +49,7 @@ class OpenAIBaseModel(BaseModel):
# Compare against both field names and aliases # Compare against both field names and aliases
if any(k not in field_names for k in data): if any(k not in field_names for k in data):
logger.warning( logger.debug(
"The following fields were present in the request but ignored: %s", "The following fields were present in the request but ignored: %s",
data.keys() - field_names, data.keys() - field_names,
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment