You are here

public function LogsHttpLogger::getUrl in Logs HTTP 8

A getter for the url of the endpoint we should send the data to.

Return value

array|mixed|null Returns the endpoint URL to POST data to.

Overrides LogsHttpLoggerInterface::getUrl

1 call to LogsHttpLogger::getUrl()
LogsHttpLogger::isEnabled in src/Logger/LogsHttpLogger.php
Check weather we should use Logs http module or not.

File

src/Logger/LogsHttpLogger.php, line 204

Class

LogsHttpLogger
Implements a Logs Http Logger instance.

Namespace

Drupal\logs_http\Logger

Code

public function getUrl() {
  return $this->config
    ->get('url');
}