pull/93/head
Konstantin Gründger 2020-11-02 21:46:59 +01:00
rodzic 8b85415fef
commit bd0759eec0
3 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -1,5 +1,5 @@
# CHANGELOG # CHANGELOG
## unreleased ## 1.0.1: - 2020-11-02
- client: catch errors while connecting (fixes #74 and #91) - client: catch errors while connecting (fixes #74 and #91)
- client: no logging messages by default (fixes #92) - client: no logging messages by default (fixes #92)

Wyświetl plik

@ -54,7 +54,7 @@ class AprsClient:
sleep(wait_period) sleep(wait_period)
else: else:
self._kill = True self._kill = True
self.logger.info('Giving up.') self.logger.critical('Could not connect to OGN.')
def disconnect(self): def disconnect(self):
self.logger.info('Disconnect') self.logger.info('Disconnect')

Wyświetl plik

@ -4,7 +4,7 @@ APRS_SERVER_PORT_CLIENT_DEFINED_FILTERS = 14580
APRS_APP_NAME = 'python-ogn-client' APRS_APP_NAME = 'python-ogn-client'
PACKAGE_VERSION = '1.0.0' PACKAGE_VERSION = '1.0.1'
APRS_APP_VER = PACKAGE_VERSION[:3] APRS_APP_VER = PACKAGE_VERSION[:3]
APRS_KEEPALIVE_TIME = 240 APRS_KEEPALIVE_TIME = 240