From 37fcdb9a60efc7f6306e18252c0ce98203cb1322 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 20 Feb 2023 14:29:02 +0100 Subject: [PATCH] some more debug output --- tmtcc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tmtcc.py b/tmtcc.py index 62f000c..da1ed2d 100755 --- a/tmtcc.py +++ b/tmtcc.py @@ -178,8 +178,8 @@ class PusHandler(SpecificApidHandlerBase): class UnknownApidHandler(GenericApidHandlerBase): - def handle_tm(self, apid: int, _packet: bytes, _user_args: any): - _LOGGER.warning(f"Packet with unknwon APID {apid} detected") + def handle_tm(self, apid: int, packet: bytes, _user_args: any): + _LOGGER.warning(f"Packet with unknwon APID {apid} detected: {packet}") class CfdpInCcsdsWrapper(SpecificApidHandlerBase):