Skip to content

Commit

Permalink
Merge pull request #74 from KTibow/patch-1
Browse files Browse the repository at this point in the history
Fix bug with logging connection
  • Loading branch information
brentru authored Mar 15, 2021
2 parents 4a2ad00 + 9b6cc59 commit 31d23a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_minimqtt/adafruit_minimqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def _get_connect_socket(self, host, port, *, timeout=1):
self.logger.info(
"Establishing a SECURE SSL connection to {0}:{1}".format(host, port)
)
else:
elif self.logger:
self.logger.info(
"Establishing an INSECURE connection to {0}:{1}".format(host, port)
)
Expand Down

0 comments on commit 31d23a7

Please sign in to comment.