Skip to content

Commit

Permalink
debugging tcp gateway problems
Browse files Browse the repository at this point in the history
  • Loading branch information
grimmpp committed Oct 18, 2024
1 parent 5e99026 commit 20dee27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/eltako/virtual_network_gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def handle_client(self, conn: socket.socket, addr: socket.AddressInfo):
t = package[0]
msg:ESP2Message = package[1]
if time.time() - t < MAX_MESSAGE_DELAY:
LOGGER.debug(f"[{LOGGING_PREFIX_VIRT_GW}] Forward EnOcean message {msg}")
# LOGGER.debug(f"[{LOGGING_PREFIX_VIRT_GW}] Forward EnOcean message {msg}")
conn.sendall(msg.serialize())

self._fire_received_message_count_event()
Expand Down

0 comments on commit 20dee27

Please sign in to comment.