From a623c6bf14763d1c9f18a0d4c273a835c0793c12 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Tue, 14 Mar 2023 14:00:39 -0700 Subject: [PATCH] Add CAN fingerprint to qlog (#27574) old-commit-hash: e2f4a82c03543651eab1e7e51c411f79b5684a5a --- selfdrive/car/car_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/car/car_helpers.py b/selfdrive/car/car_helpers.py index 370772c902..dc82f56197 100644 --- a/selfdrive/car/car_helpers.py +++ b/selfdrive/car/car_helpers.py @@ -180,7 +180,7 @@ def get_car(logcan, sendcan, experimental_long_allowed, num_pandas=1): candidate, fingerprints, vin, car_fw, source, exact_match = fingerprint(logcan, sendcan, num_pandas) if candidate is None: - cloudlog.warning("car doesn't match any fingerprints: %r", fingerprints) + cloudlog.event("car doesn't match any fingerprints", fingerprints=fingerprints, error=True) candidate = "mock" CarInterface, CarController, CarState = interfaces[candidate]