From feddcfc639b97db603092938ce9519b759d02ff2 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Wed, 25 Oct 2023 02:58:36 +0200 Subject: [PATCH] Added missing error log --- sbapp/sideband/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbapp/sideband/core.py b/sbapp/sideband/core.py index 4d8c41c..69d261d 100644 --- a/sbapp/sideband/core.py +++ b/sbapp/sideband/core.py @@ -770,7 +770,7 @@ class SidebandCore(): if context_dest == self.lxmf_destination.hash and limit == 1: try: return [[self.latest_telemetry["time"]["utc"], self.latest_packed_telemetry]] - except: + except Exception as e: RNS.log("An error occurred while retrieving telemetry from the database: "+str(e), RNS.LOG_ERROR) return []