Line len lint and drop rpc log msg level again

signint_saviour
Tyler Goodlet 2022-08-01 13:50:02 -04:00
parent e4771eec16
commit c5c7a9027c
1 changed files with 7 additions and 2 deletions

View File

@ -955,7 +955,7 @@ class Actor:
chan._exc = exc chan._exc = exc
raise exc raise exc
log.info( log.runtime(
f"Processing request from {actorid}\n" f"Processing request from {actorid}\n"
f"{ns}.{funcname}({kwargs})") f"{ns}.{funcname}({kwargs})")
@ -1004,7 +1004,12 @@ class Actor:
) )
try: try:
await _invoke( await _invoke(
self, cid, chan, func, kwargs, is_rpc=False self,
cid,
chan,
func,
kwargs,
is_rpc=False,
) )
except BaseException: except BaseException:
log.exception("failed to cancel task?") log.exception("failed to cancel task?")