SysLog::__construct

public SysLog::__construct(ConfigFactoryInterface $config_factory, LogMessageParserInterface $parser)

Constructs a SysLog object.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The configuration factory object.

\Drupal\Core\Logger\LogMessageParserInterface $parser: The parser to use when extracting message variables.

File

core/modules/syslog/src/Logger/SysLog.php, line 45

Class

SysLog
Redirects logging messages to syslog.

Namespace

Drupal\syslog\Logger

Code

public function __construct(ConfigFactoryInterface $config_factory, LogMessageParserInterface $parser) {
  $this->config = $config_factory->get('syslog.settings');
  $this->parser = $parser;
}
doc_Drupal
2016-10-29 09:45:34
Comments
Leave a Comment

Please login to continue.