From c3dc8a27f18ed88a328d8f76c15015413aef6121 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Mon, 5 Feb 2024 22:30:33 -0600 Subject: [PATCH] log vin request to qlog (#31314) old-commit-hash: cd153e637631d8f4eeaf530dff7510ed6d73c071 --- selfdrive/car/vin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/car/vin.py b/selfdrive/car/vin.py index f69771546f..676593255a 100755 --- a/selfdrive/car/vin.py +++ b/selfdrive/car/vin.py @@ -42,7 +42,7 @@ def get_vin(logcan, sendcan, buses, timeout=0.1, retry=3, debug=False): if vin.startswith(b'\x11'): vin = vin[1:18] - cloudlog.warning(f"got vin with {request=}") + cloudlog.error(f"got vin with {request=}") return get_rx_addr_for_tx_addr(addr), bus, vin.decode() except Exception: cloudlog.exception("VIN query exception")