1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-12-22 01:20:59 -05:00

Fix call in kiss consumer

Fixes a log entry in the kiss client consumer
This commit is contained in:
Hemna 2024-11-25 17:10:20 -05:00
parent 3e488db3d7
commit aba5bb03a2

View File

@ -110,4 +110,5 @@ class KISSClient(base.APRSClient):
return self._client return self._client
def consumer(self, callback, blocking=False, immortal=False, raw=False): def consumer(self, callback, blocking=False, immortal=False, raw=False):
LOG.info(f"{self.__class__.__name__}.consumer called")
self._client.consumer(callback) self._client.consumer(callback)