From fd324ea7474d15ff9236cd340cfebd3b6b74a45b Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Mon, 11 Oct 2021 21:56:51 +0200 Subject: [PATCH] add some logging --- aman/com/Weather.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aman/com/Weather.py b/aman/com/Weather.py index c7ec93c..a2899af 100644 --- a/aman/com/Weather.py +++ b/aman/com/Weather.py @@ -52,4 +52,5 @@ class Weather(Thread): if None == self.lastUpdateTried or self.lastUpdateTried <= now: if True == self.provider.receiveWindData(): - self.nextUpdate = self.provider.updateTime \ No newline at end of file + self.nextUpdate = self.provider.updateTime + print('Received new wind data') \ No newline at end of file