Spaces:
Paused
Paused
File size: 414 Bytes
4a2ab42 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/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()
|