improve log

This commit is contained in:
Jack Robison 2020-03-25 13:16:44 -04:00
parent 4bff2d718e
commit 66b4ad0c44
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -55,7 +55,7 @@ class ClientSession(BaseClientSession):
async def send_request(self, method, args=()):
self.pending_amount += 1
log.debug("send %s to %s:%i", method, *self.server)
log.debug("send %s%s to %s:%i", method, tuple(args), *self.server)
try:
if method == 'server.version':
return await self.send_timed_server_version_request(args, self.timeout)