diff --git a/src/webapis/WebAPIs.ts b/src/webapis/WebAPIs.ts index ab6a8ccc..149005db 100644 --- a/src/webapis/WebAPIs.ts +++ b/src/webapis/WebAPIs.ts @@ -261,7 +261,7 @@ export class WebAPIs { // Match the spec behavior of `/report`: return 200 and an empty JSON. response.status(200).json({}); } catch (ex) { - log.warn("Error responding to an abuse report", roomID, eventID, ex); + log.error("Error responding to an abuse report", roomID, eventID, ex); response.status(503); } }