diff options
author | Will Hunt <will@half-shot.uk> | 2018-12-13 18:05:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-13 18:05:09 +0000 |
commit | 0f3293d2c4e3a48ff19af647dc9ce7d0d756cddd (patch) | |
tree | 382eb792d954664471c268e550e3717d125a052d | |
parent | Improved welcome page (#4294) (diff) | |
download | synapse-0f3293d2c4e3a48ff19af647dc9ce7d0d756cddd.tar.xz |
Log roomid along with Unknown room
-rw-r--r-- | synapse/storage/state.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/state.py b/synapse/storage/state.py index d737bd6778..a134e9b3e8 100644 --- a/synapse/storage/state.py +++ b/synapse/storage/state.py @@ -432,7 +432,7 @@ class StateGroupWorkerStore(EventsWorkerStore, SQLBaseStore): create_id = state_ids.get((EventTypes.Create, "")) if not create_id: - raise NotFoundError("Unknown room") + raise NotFoundError("Unknown room %s" % (room_id)) create_event = yield self.get_event(create_id) defer.returnValue(create_event.content.get("room_version", "1")) |