mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-29 02:22:09 +08:00
c7029ea15a
* use OP prefix for logmessage * cleanup paths too * cleanup the paths too * add hw.py to release * fix those issues * fix unittests * fix unittests * fix unittests * do swaglog_ipc properly across all the files * fix that * fix swaglog in c++ * review suggestions old-commit-hash: bfe990b112a83f245bb5244553c84202aec7d86c
9 lines
318 B
Python
9 lines
318 B
Python
import os
|
|
from openpilot.system.hardware.hw import Paths
|
|
from openpilot.system.loggerd.uploader import UPLOAD_ATTR_NAME, UPLOAD_ATTR_VALUE
|
|
|
|
for folder in os.walk(Paths.log_root()):
|
|
for file1 in folder[2]:
|
|
full_path = os.path.join(folder[0], file1)
|
|
os.setxattr(full_path, UPLOAD_ATTR_NAME, UPLOAD_ATTR_VALUE)
|