Skip to content

Commit

Permalink
Remove unecessary logging statements (#997)
Browse files Browse the repository at this point in the history
  • Loading branch information
allenporter authored May 21, 2024
1 parent 88f51f5 commit 381e130
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions google_nest_sdm/google_nest_subscriber.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,9 +534,7 @@ async def _async_message_callback_with_timeout(
"""Handle a received message."""
try:
async with asyncio.timeout(MESSAGE_ACK_TIMEOUT_SECONDS):
print("Async message callback with timeout, ", MESSAGE_ACK_TIMEOUT_SECONDS)
await self._async_message_callback(message)
print("Done")
except TimeoutError as err:
DIAGNOSTICS.increment("message_ack_timeout")
raise TimeoutError("Message ack timeout processing message") from err
Expand Down

0 comments on commit 381e130

Please sign in to comment.