From bf269bd883e77bf29e4d9a0a21ef0c4a9eb79c2c Mon Sep 17 00:00:00 2001 From: ntegan1 Date: Mon, 9 May 2022 15:07:19 -0400 Subject: [PATCH] Tools: allow uncompressed logs (#24471) --- tools/lib/route.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/lib/route.py b/tools/lib/route.py index 8092096a0b..067fccf188 100644 --- a/tools/lib/route.py +++ b/tools/lib/route.py @@ -8,9 +8,9 @@ from tools.lib.auth_config import get_token from tools.lib.api import CommaApi from tools.lib.helpers import RE -QLOG_FILENAMES = ['qlog.bz2'] +QLOG_FILENAMES = ['qlog', 'qlog.bz2'] QCAMERA_FILENAMES = ['qcamera.ts'] -LOG_FILENAMES = ['rlog.bz2', 'raw_log.bz2'] +LOG_FILENAMES = ['rlog', 'rlog.bz2', 'raw_log.bz2'] CAMERA_FILENAMES = ['fcamera.hevc', 'video.hevc'] DCAMERA_FILENAMES = ['dcamera.hevc'] ECAMERA_FILENAMES = ['ecamera.hevc']