Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
more debugging for public rooms test
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh committed Oct 7, 2019
1 parent 023aa40 commit f4b41f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion synapse/handlers/room.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ def create(etype, content, **kwargs):
@defer.inlineCallbacks
def send(etype, content, **kwargs):
event = create(etype, content, **kwargs)
logger.info("Sending %s in new room", etype)
logger.info("Sending %s in new room %s", etype, room_id)
yield self.event_creation_handler.create_and_send_nonmember_event(
creator, event, ratelimit=False
)
Expand Down
4 changes: 2 additions & 2 deletions synapse/handlers/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def _unsafe_process(self):
stream_id=max_pos,
)

logger.debug("Handled room stats to %s -> %s", self.pos, max_pos)
logger.info("Handled room stats between %s and %s", self.pos, max_pos)

event_processing_positions.labels("stats").set(max_pos)

Expand Down Expand Up @@ -153,7 +153,7 @@ def _handle_deltas(self, deltas):
stream_id = delta["stream_id"]
prev_event_id = delta["prev_event_id"]

logger.debug("Handling: %r, %r %r, %s", room_id, typ, state_key, event_id)
logger.info("Handling: %r, %r %r, %s", room_id, typ, state_key, event_id)

token = yield self.store.get_earliest_token_for_stats("room", room_id)

Expand Down

0 comments on commit f4b41f7

Please sign in to comment.