make bridge more robust

This commit is contained in:
Gilles Boccon-Gibod
2026-01-27 09:47:52 -08:00
parent e63dc15ede
commit f44d013690

View File

@@ -55,7 +55,10 @@ class HCI_Bridge:
return
# Analyze the packet
self.trace(hci_packet)
try:
self.trace(hci_packet)
except Exception:
logger.exception('Exception while tracing packet')
# Bridge the packet
self.hci_sink.on_packet(packet)