adding test

This commit is contained in:
Philipp Holzer 2019-02-20 17:20:17 +01:00
parent 107293bd61
commit 466f7a0ee5
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
2 changed files with 34 additions and 2 deletions

View file

@ -32,6 +32,16 @@ class Profiler implements ContainerInterface
*/
private $rendertime;
/**
* True, if the Profiler should measure the whole rendertime including functions
*
* @return bool
*/
public function isRendertime()
{
return $this->rendertime;
}
/**
* @param bool $enabled True, if the Profiler is enabled
* @param bool $renderTime True, if the Profiler should measure the whole rendertime including functions
@ -207,8 +217,10 @@ class Profiler implements ContainerInterface
]
);
$output = $this->getRendertimeString();
$logger->info($message . ": " . $output, ['action' => 'profiling']);
if ($this->isRendertime()) {
$output = $this->getRendertimeString();
$logger->info($message . ": " . $output, ['action' => 'profiling']);
}
}
/**