some more debug output

This commit is contained in:
Robin Müller 2023-02-20 14:29:02 +01:00
parent 6e22e3528a
commit 37fcdb9a60
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
1 changed files with 2 additions and 2 deletions

View File

@ -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):