Skip to content

Commit

Permalink
silent ack error
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveicedgreentea committed Jan 14, 2023
1 parent 68e3c5c commit 2023be7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions madvr/madvr.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def send_command(self, command: str) -> str:
continue

except socket.timeout:
self.logger.error("Ack receipt timed out, retrying")
self.logger.debug("Ack receipt timed out, retrying")
retry_count += 1
continue
# should catch connection is closed
Expand All @@ -335,7 +335,7 @@ def send_command(self, command: str) -> str:
return ""

except socket.timeout:
self.logger.error("Ack receipt timed out, retrying")
self.logger.debug("Ack receipt timed out, retrying")
retry_count += 1
continue

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="py_madvr",
version="1.1.2",
version="1.1.3",
author="iloveicedgreentea",
description="A package to control MadVR Envy over IP",
long_description=long_description,
Expand Down

0 comments on commit 2023be7

Please sign in to comment.