Remove leftover debug logging

As spotted in https://github.com/element-hq/synapse/pull/19644#discussion_r3233096398
This commit is contained in:
Eric Eastwood
2026-05-13 12:21:27 -05:00
parent 13d99070bb
commit 6acc2a9eea
-7
View File
@@ -1312,13 +1312,6 @@ class StreamToken:
self_value = self.get_field(key)
other_value = other_token.get_field(key)
logger.info(
"asdf key=%s self_value=%s, other_value=%s",
key,
self_value,
other_value,
)
if isinstance(self_value, RoomStreamToken):
assert isinstance(other_value, RoomStreamToken)
if not self_value.is_before_or_eq(other_value):