We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46a31ce commit bc47bb6Copy full SHA for bc47bb6
horusdemodlib/uploader.py
@@ -271,8 +271,10 @@ def main():
271
_temp_packet.pop('packet_format')
272
_temp_packet.pop('ukhas_str')
273
logging.debug(f"Binary Packet Contents: {_temp_packet}")
274
+
275
except Exception as e:
- logging.error(f"Decode Failed: {traceback.format_exc()}")
276
+ logging.error(f"Decode Failed: {e}")
277
+ logging.debug(f"Traceback: {traceback.format_exc()}")
278
279
except KeyboardInterrupt:
280
logging.info("Caught CTRL-C, exiting.")
0 commit comments