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

Commit

Permalink
Use logger not logging
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Jan 7, 2016
1 parent 5727922 commit fcbe63e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synapse/handlers/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ def incremental_sync_with_gap_for_room(self, room_id, sync_config,
),
)

logging.debug("Room sync: %r", room_sync)
logger.debug("Room sync: %r", room_sync)

defer.returnValue(room_sync)

Expand Down Expand Up @@ -709,7 +709,7 @@ def incremental_sync_for_archived_room(self, sync_config, leave_event,
),
)

logging.debug("Room sync: %r", room_sync)
logger.debug("Room sync: %r", room_sync)

defer.returnValue(room_sync)

Expand Down

0 comments on commit fcbe63e

Please sign in to comment.