diff options
author | Eric Eastwood <erice@element.io> | 2023-07-11 17:12:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 17:12:41 -0500 |
commit | ae391db777af0146ad8b50fa5bcbd7cc39c0d886 (patch) | |
tree | 5fcff2d0626072bca16b12f2ca47044db6ab9a36 /synapse | |
parent | Bump Unix sockets intro version (#15924) (diff) | |
download | synapse-ae391db777af0146ad8b50fa5bcbd7cc39c0d886.tar.xz |
Better warning in logs when we fail to fetch an alias (#15922)
**Before:** ``` Error retrieving alias ``` **After:** ``` Error retrieving alias #foo:bar -> 401 Unauthorized ``` *Spawning from creating the [manual testing strategy for the outbound federation proxy](https://github.com/matrix-org/synapse/pull/15773).*
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/directory.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/handlers/directory.py b/synapse/handlers/directory.py index 1e0623c7f8..623a4e7b1d 100644 --- a/synapse/handlers/directory.py +++ b/synapse/handlers/directory.py @@ -277,7 +277,9 @@ class DirectoryHandler: except RequestSendFailed: raise SynapseError(502, "Failed to fetch alias") except CodeMessageException as e: - logging.warning("Error retrieving alias") + logging.warning( + "Error retrieving alias %s -> %s %s", room_alias, e.code, e.msg + ) if e.code == 404: fed_result = None else: |