15 lines
488 B
Python
15 lines
488 B
Python
#!/usr/bin/env python3
|
|
"""临时:查看 49b80a6f 的 description 全文"""
|
|
import json
|
|
|
|
from _env_paths import ensure_repo_root
|
|
ensure_repo_root()
|
|
|
|
idx = json.load(open("docs/audit/session_logs/_session_index.json", encoding="utf-8"))
|
|
for eid, ent in idx.get("entries", {}).items():
|
|
if eid.startswith("49b80a6f"):
|
|
print(f"exec_id: {eid}")
|
|
print(f"startTime: {ent.get('startTime','')}")
|
|
print(f"description:\n{ent.get('description', '(无)')}")
|
|
break
|