config = $config_factory->get('system.file'); $this->parser = $parser; $this->dateFormatter = $date_formatter; } /** * {@inheritdoc} */ public function log($level, $message, array $context = []) { // Populate the message placeholders and then replace them in the message. $message_placeholders = $this->parser->parseMessagePlaceholders($message, $context); $message = empty($message_placeholders) ? $message : strtr($message, $message_placeholders); $entry = [ 'message' => strip_tags($message), 'date' => $this->dateFormatter->format($context['timestamp']), 'type' => $context['channel'], 'ip' => $context['ip'], 'request_uri' => $context['request_uri'], 'referer' => $context['referer'], 'severity' => (string) RfcLogLevel::getLevels()[$level], 'uid' => $context['uid'], ]; file_put_contents( $this->config->get('path.temporary') . '/drupal.log', print_r($entry, TRUE), FILE_APPEND ); } }