File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
7
8
+ ## [ 3.0.1] - 2019-06-27
9
+ #### Fixed
10
+ * Fixed always debug on reconnection
11
+
8
12
## [ 3.0.0] - 2019-04-26
9
13
#### Removed
10
14
* Support to Python 2.7
Original file line number Diff line number Diff line change 1
1
2
2
[ ![ master Build Status] ( https://travis-ci.com/DevoInc/python-sdk.svg?branch=master )] ( https://travis-ci.com/DevoInc/python-sdk ) [ ![ LICENSE] ( https://img.shields.io/dub/l/vibe-d.svg )] ( https://github.com/DevoInc/python-sdk/blob/master/LICENSE )
3
3
4
- [ ![ wheel] ( https://img.shields.io/badge/wheel-yes-brightgreen.svg )] ( https://pypi.org/project/devo-sdk/ ) [ ![ version] ( https://img.shields.io/badge/version-3.0.0 -blue.svg )] ( https://pypi.org/project/devo-sdk/ ) [ ![ python] ( https://img.shields.io/badge/python-3.5%20%7C%203.6%20%7C%203.7-blue.svg )] ( https://pypi.org/project/devo-sdk/ )
4
+ [ ![ wheel] ( https://img.shields.io/badge/wheel-yes-brightgreen.svg )] ( https://pypi.org/project/devo-sdk/ ) [ ![ version] ( https://img.shields.io/badge/version-3.0.1 -blue.svg )] ( https://pypi.org/project/devo-sdk/ ) [ ![ python] ( https://img.shields.io/badge/python-3.5%20%7C%203.6%20%7C%203.7-blue.svg )] ( https://pypi.org/project/devo-sdk/ )
5
5
6
6
7
7
# Devo Python SDK
Original file line number Diff line number Diff line change 1
1
__description__ = 'Devo Python Library.'
2
2
__url__ = 'http://www.devo.com'
3
- __version__ = "3.0.0 "
3
+ __version__ = "3.0.1 "
4
4
__author__ = 'Devo'
5
5
__author_email__ = 'support@devo.com'
6
6
__license__ = 'MIT'
Original file line number Diff line number Diff line change @@ -186,9 +186,10 @@ def __connect_ssl(self):
186
186
187
187
self .socket .connect (self ._sender_config .address )
188
188
self .reconnection += 1
189
- self .logger .debug ('Conected to %s|%s'
190
- % (repr (self .socket .getpeername ())
191
- , str (self .reconnection )))
189
+ if self .debug :
190
+ self .logger .debug ('Conected to %s|%s'
191
+ % (repr (self .socket .getpeername ())
192
+ , str (self .reconnection )))
192
193
self .timestart = int (round (time .time () * 1000 ))
193
194
194
195
except socket .error as error :
You can’t perform that action at this time.
0 commit comments