mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-29 10:32:10 +08:00
Print prettier androidLog messages
old-commit-hash: f468ad3298c631b50def1ea01118333ff535c8f5
This commit is contained in:
@@ -14,6 +14,15 @@ LEVELS = {
|
||||
"CRITICAL": 50,
|
||||
}
|
||||
|
||||
ANDROID_LOG_SOURCE = {
|
||||
0: "MAIN",
|
||||
1: "RADIO",
|
||||
2: "EVENTS",
|
||||
3: "SYSTEM",
|
||||
4: "CRASH",
|
||||
5: "KERNEL",
|
||||
}
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
@@ -41,5 +50,6 @@ if __name__ == "__main__":
|
||||
|
||||
if sm.updated['androidLogEntry']:
|
||||
t = sm.logMonoTime['androidLogEntry']
|
||||
print(f"[{t / 1e9:.6f}] - ")
|
||||
print(sm['androidLogEntry'])
|
||||
m = sm['androidLogEntry']
|
||||
source = ANDROID_LOG_SOURCE[m.id]
|
||||
print(f"[{t / 1e9:.6f}] {source} {m.pid} {m.tag} - {m.message}")
|
||||
|
||||
Reference in New Issue
Block a user