diff --git a/moonraker/components/application.py b/moonraker/components/application.py index 57f6eb8d..54f7222e 100644 --- a/moonraker/components/application.py +++ b/moonraker/components/application.py @@ -701,6 +701,8 @@ async def _process_http_request(self, req_type: RequestType) -> None: args, req_type, transport, ip, self.current_user ) except ServerError as e: + if self.server.is_verbose_enabled(): + logging.exception("API Request Failure") raise tornado.web.HTTPError( e.status_code, reason=str(e)) from e if self.wrap_result: