zenith-backend / scripts /verify_audit_logs.py
teoat
deploy: sync from main Sun Jan 11 18:43:53 WIT 2026
4a2ab42
#!/usr/bin/env python3
"""Run audit log verification and print a short report."""
from backend.services.audit_verifier import verify_all
def main():
total, passed, failed = verify_all()
print(f"Audit logs: total={total}, verified={passed}, failed={len(failed)}")
if failed:
print("Failed IDs:")
for fid in failed:
print(" -", fid)
if __name__ == "__main__":
main()