You are here

public function RfcLoggerTrait::error in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Logger/RfcLoggerTrait.php \Drupal\Core\Logger\RfcLoggerTrait::error()

File

core/lib/Drupal/Core/Logger/RfcLoggerTrait.php, line 41

Class

RfcLoggerTrait
A copy of \Psr\Log\LoggerTrait that uses RFC 5424 compliant log levels.

Namespace

Drupal\Core\Logger

Code

public function error($message, array $context = []) {
  $this
    ->log(RfcLogLevel::ERROR, $message, $context);
}