public function AuditLogStorage::save in Audit Log 8
Same name and namespace in other branches
- 8.2 src/AuditLogStorage.php \Drupal\audit_log\AuditLogStorage::save()
Writes the audit event to each available logging destination.
Parameters
\Drupal\audit_log\AuditLogEventInterface $event: The audit event to be logged.
File
- src/
AuditLogStorage.php, line 26
Class
- AuditLogStorage
- Writes audit log events to enabled logging destinations.
Namespace
Drupal\audit_logCode
public function save(AuditLogEventInterface $event) {
foreach ($this
->sortStorageBackends() as $storage_backend) {
$storage_backend
->save($event);
}
}