You are here

public function FeedsSource::log in Feeds 8.2

Writes to feeds log.

1 call to FeedsSource::log()
FeedsSource::import in lib/Drupal/feeds/FeedsSource.php
Import a source: execute fetching, parsing and processing stage.

File

lib/Drupal/feeds/FeedsSource.php, line 587
Definition of FeedsSourceInterface and FeedsSource class.

Class

FeedsSource
This class encapsulates a source of a feed. It stores where the feed can be found and how to import it.

Namespace

Drupal\feeds

Code

public function log($type, $message, $variables = array(), $severity = WATCHDOG_NOTICE) {
  feeds_log($this->id, $this->feed_nid, $type, $message, $variables, $severity);
}