You are here

function audit_log_logs_http_audit_log in Audit Log 7

Implements hook_audit_log().

File

modules/audit_log_logs_http/audit_log_logs_http.module, line 10
Hook implemenations for the Audit logging module.

Code

function audit_log_logs_http_audit_log(Auditlog $log) {
  $events =& drupal_static('logs_http_events', array());
  $event = (array) $log;
  $event = logs_http_array_remove_empty($event);
  $events[] = $event;
}