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

Commit

Permalink
Remove debug log lines
Browse files Browse the repository at this point in the history
  • Loading branch information
anoadragon453 committed Nov 4, 2021
1 parent d8ebde9 commit 7bf663a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion changelog.d/11138.misc

This file was deleted.

2 changes: 0 additions & 2 deletions synapse/handlers/appservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,8 +449,6 @@ async def _handle_to_device(
}
)

logger.info("*** Ended up with messages: %s", message_payload)

return message_payload, max_stream_token

async def _handle_typing(
Expand Down
3 changes: 0 additions & 3 deletions synapse/storage/databases/main/deviceinbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ async def get_new_messages(
):
break
else:
logger.info("*** Bailing out")
return {}, to_stream_token

def get_new_messages_txn(txn):
Expand All @@ -178,8 +177,6 @@ def get_new_messages_txn(txn):
" LIMIT ?"
) % many_clause_sql

logger.info("*** %s\n\n%s", many_clause_sql, many_clause_args)
logger.info("*** %s", sql)
txn.execute(
sql, (*many_clause_args, from_stream_token, to_stream_token, limit)
)
Expand Down

0 comments on commit 7bf663a

Please sign in to comment.