diff --git a/selfdrive/debug/run_process_on_route.py b/selfdrive/debug/run_process_on_route.py index c98763f3c9..45665e8a48 100755 --- a/selfdrive/debug/run_process_on_route.py +++ b/selfdrive/debug/run_process_on_route.py @@ -25,6 +25,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" - print(f"Saved log to {fn}") + fn = f"{args.route.replace('/', '_')}_{args.process}.zst" + print(f"Saving log to {fn}") save_log(fn, outputs)