You are here

public function AuditLogEvent::getMessage in Audit Log 8.2

Same name and namespace in other branches
  1. 8 src/AuditLogEvent.php \Drupal\audit_log\AuditLogEvent::getMessage()

Retrieves the untranslated audit log message for the event.

Return value

string The untranslated audit log message.

Overrides AuditLogEventInterface::getMessage

File

src/AuditLogEvent.php, line 151

Class

AuditLogEvent
Represents a single auditable event for logging.

Namespace

Drupal\audit_log

Code

public function getMessage() {
  return $this->message;
}