Demote function call payload log to debug to avoid noisy error-level stderr (#6808)

This commit is contained in:
cassirer-openai 2025-11-18 08:16:11 +07:00 committed by GitHub
parent 7ab45487dd
commit 8465f1f2f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -379,7 +379,7 @@ impl Serialize for FunctionCallOutputPayload {
where
S: Serializer,
{
tracing::error!("Payload: {:?}", self);
tracing::debug!("Function call output payload: {:?}", self);
if let Some(items) = &self.content_items {
items.serialize(serializer)
} else {