add manpage generator

This commit is contained in:
2021-08-17 03:42:47 +03:00
parent 41a3c08d9f
commit a90c93bbc4
10 changed files with 36 additions and 24 deletions

View File

@ -40,7 +40,7 @@ def exception_handler(logger: Logger) -> Callable[[Request, HandlerType], Awaita
except HTTPClientError:
raise
except Exception:
logger.exception(f"exception during performing request to {request.path}")
logger.exception("exception during performing request to %s", request.path)
raise
return handle