Skip to content

Commit

Permalink
Merge pull request #55 from pawlizio/patch-1
Browse files Browse the repository at this point in the history
Reduce warning messages
  • Loading branch information
Julius2342 committed Nov 12, 2020
2 parents 795f798 + 22c6624 commit e7091e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyvlx/pyvlx.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(self, path=None, host=None, password=None, loop=None):

async def connect(self):
"""Connect to KLF 200."""
PYVLXLOG.warning("Connecting to KLF 200.")
PYVLXLOG.debug("Connecting to KLF 200.")
await self.connection.connect()
login = Login(pyvlx=self, password=self.config.password)
await login.do_api_call()
Expand Down Expand Up @@ -70,7 +70,7 @@ async def update_version(self):
if not get_protocol_version.success:
raise PyVLXException("Unable to retrieve protocol version")
self.protocol_version = get_protocol_version.version
PYVLXLOG.warning(
PYVLXLOG.debug(
"Connected to: %s, protocol version: %s",
self.version,
self.protocol_version,
Expand Down

0 comments on commit e7091e1

Please sign in to comment.