mirror of
https://github.com/smittix/intercept.git
synced 2026-04-25 07:10:00 -07:00
Add full traceback to Bluetooth scan error logging
This commit is contained in:
@@ -1300,7 +1300,8 @@ def _run_sweep(
|
|||||||
})
|
})
|
||||||
last_bt_scan = current_time
|
last_bt_scan = current_time
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(f"Bluetooth scan error: {e}")
|
import traceback
|
||||||
|
logger.error(f"Bluetooth scan error: {e}\n{traceback.format_exc()}")
|
||||||
|
|
||||||
# Perform RF scan using SDR
|
# Perform RF scan using SDR
|
||||||
if rf_enabled and (current_time - last_rf_scan) >= rf_scan_interval:
|
if rf_enabled and (current_time - last_rf_scan) >= rf_scan_interval:
|
||||||
|
|||||||
Reference in New Issue
Block a user