Skip to content

Commit

Permalink
Fix: Remove un-needed log info..
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres D. Molins committed Jan 13, 2025
1 parent 5918d2a commit 916f5e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/aleph/db/models/pending_messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def from_obj(
tx_hash=tx_hash,
reception_time=reception_time,
fetched=fetched,
origin=str(origin),
origin=origin,
)

@classmethod
Expand Down Expand Up @@ -142,7 +142,7 @@ def from_message_dict(
retries=0,
tx_hash=tx_hash,
reception_time=reception_time,
origin=str(origin),
origin=origin,
)


Expand Down
7 changes: 0 additions & 7 deletions src/aleph/services/p2p/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@ async def incoming_channel(
async for message in p2p_client.receive_messages(topic):
try:
protocol, topic, peer_id = message.routing_key.split(".")
LOGGER.info(
"Received new %s message on topic %s from %s",
protocol,
topic,
peer_id,
)
LOGGER.info("Received new message %r ", message)
LOGGER.debug(
"Received new %s message on topic %s from %s",
protocol,
Expand Down

0 comments on commit 916f5e3

Please sign in to comment.