[Frontend] Fix logging format when enable response logging (#28049)

Signed-off-by: esmeetu <jasonailu87@gmail.com>
This commit is contained in:
Roy Wang 2025-11-07 00:25:39 +08:00 committed by GitHub
parent e52e4da971
commit d1dd5f53e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1572,8 +1572,7 @@ def _log_streaming_response(response, response_body: list) -> None:
full_content = full_content[:2048] + ""
"...[truncated]"
logger.info(
"response_body={streaming_complete: "
"content='%s', chunks=%d}",
"response_body={streaming_complete: content=%r, chunks=%d}",
full_content,
chunk_count,
)