public function HttpCache::getLog

Returns a log message for the events of the last request processing.

Return value

string A log message

1 call to HttpCache::getLog()
HttpCache::handle in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/HttpCache/HttpCache.php
@api

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/HttpCache/HttpCache.php, line 126

Class

HttpCache
Cache provides HTTP caching.

Namespace

Symfony\Component\HttpKernel\HttpCache

Code

public function getLog() {
  $log = array();
  foreach ($this->traces as $request => $traces) {
    $log[] = sprintf('%s: %s', $request, implode(', ', $traces));
  }
  return implode('; ', $log);
}