You are here

public function AkamaiClientBase::setLogRequests in Akamai 8.3

Sets whether or not to log requests and responses.

Parameters

bool $log_requests: TRUE to log all requests, FALSE to not.

Return value

$this

File

src/AkamaiClientBase.php, line 210

Class

AkamaiClientBase
Connects to the Akamai EdgeGrid.

Namespace

Drupal\akamai

Code

public function setLogRequests($log_requests) {
  $this->logRequests = (bool) $log_requests;
  return $this;
}