NorskManager.getAuditLog() method
The most recent audit-log entries (newest first), plus whether the daemon’s hash chain verified on its last boot.
Signature:
getAuditLog(limit?: number): Promise<{
entries: AuditLogEntry[];
integrityOk: boolean;
droppedOnHydration: HydrationDrop[];
}>;
Parameters
| Parameter | Type | Description |
|---|---|---|
limit |
number |
(Optional) |
Returns:
Promise<{ entries: AuditLogEntry[]; integrityOk: boolean; droppedOnHydration: HydrationDrop[]; }>