mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-12-26 07:09:23 -05:00
Add logging
This commit is contained in:
parent
449d1297ca
commit
d4d176e5d0
@ -38,6 +38,10 @@ import synapse.metrics
|
|||||||
from blist import sorteddict
|
from blist import sorteddict
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
|
import logging
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
metrics = synapse.metrics.get_metrics_for(__name__)
|
metrics = synapse.metrics.get_metrics_for(__name__)
|
||||||
|
|
||||||
@ -480,6 +484,10 @@ def process_rows_for_federation(federation_sender, rows):
|
|||||||
|
|
||||||
# Parse the rows in the stream and add to the buffer
|
# Parse the rows in the stream and add to the buffer
|
||||||
for row in rows:
|
for row in rows:
|
||||||
|
if row.type not in TypeToRow:
|
||||||
|
logger.error("Unrecognized federation row type %r", row.type)
|
||||||
|
continue
|
||||||
|
|
||||||
RowType = TypeToRow[row.type]
|
RowType = TypeToRow[row.type]
|
||||||
parsed_row = RowType.from_data(row.data)
|
parsed_row = RowType.from_data(row.data)
|
||||||
parsed_row.add_to_buffer(buff)
|
parsed_row.add_to_buffer(buff)
|
||||||
|
Loading…
Reference in New Issue
Block a user