Skip to content
This repository has been archived by the owner on Dec 2, 2019. It is now read-only.

Commit

Permalink
Merge pull request #7 from hmn/master
Browse files Browse the repository at this point in the history
change log level to be less spammy
  • Loading branch information
TheRealLink authored Apr 25, 2017
2 parents f07085a + b0492f4 commit 8c39bf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pylgtv/webos_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def _command(self, msg):
websocket = yield from websockets.connect(
"ws://{}:{}".format(self.ip, self.port), timeout=self.timeout_connect)
except:
logger.error('command failed to connect to %s', "ws://{}:{}".format(self.ip, self.port));
logger.debug('command failed to connect to %s', "ws://{}:{}".format(self.ip, self.port));
return False

logger.debug('command websocket connected to %s', "ws://{}:{}".format(self.ip, self.port));
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
package_data = {'pylgtv': ['handshake.json']},
install_requires = ['websockets', 'asyncio'],
zip_safe = True,
version = '0.1.6',
version = '0.1.7',
description = 'Library to control webOS based LG Tv devices',
author = 'Dennis Karpienski',
author_email = 'dennis@karpienski.de',
Expand Down

0 comments on commit 8c39bf6

Please sign in to comment.