From 23b0023ddfd22c8090be7a7caa09e7026a12aa5c Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Fri, 26 Jul 2024 00:15:39 -0700 Subject: [PATCH] zst here too --- selfdrive/debug/run_process_on_route.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/debug/run_process_on_route.py b/selfdrive/debug/run_process_on_route.py index 90db14bc9a..6372a4d9dc 100755 --- a/selfdrive/debug/run_process_on_route.py +++ b/selfdrive/debug/run_process_on_route.py @@ -26,6 +26,6 @@ if __name__ == "__main__": inputs = [i for i in inputs if i.which() not in produces] outputs = sorted(inputs + outputs, key=lambda x: x.logMonoTime) - fn = f"{args.route.replace('/', '_')}_{args.process}.bz2" + fn = f"{args.route.replace('/', '_')}_{args.process}.zst" print(f"Saved log to {fn}") save_log(fn, outputs)