Skip to content

Commit 3aef8a0

Browse files
committed
Fix f string in logging
1 parent 899075d commit 3aef8a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/a2a/server/apps/jsonrpc/jsonrpc_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ async def _handle_requests(self, request: Request) -> Response: # noqa: PLR0911
311311
)
312312
),
313313
)
314-
logger.debug(f'Request body: {body}')
314+
logger.debug('Request body: %s', body)
315315
# 1) Validate base JSON-RPC structure only (-32600 on failure)
316316
try:
317317
base_request = JSONRPCRequest.model_validate(body)

0 commit comments

Comments
 (0)