public function Kernel::getLogDir in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/http-kernel/Kernel.php \Symfony\Component\HttpKernel\Kernel::getLogDir()
Gets the log directory.
Return value
string The log directory
Overrides KernelInterface::getLogDir
2 calls to Kernel::getLogDir()
- Kernel::buildContainer in vendor/
symfony/ http-kernel/ Kernel.php - Builds the service container.
- Kernel::getKernelParameters in vendor/
symfony/ http-kernel/ Kernel.php - Returns the kernel parameters.
File
- vendor/
symfony/ http-kernel/ Kernel.php, line 391
Class
- Kernel
- The Kernel is the heart of the Symfony system.
Namespace
Symfony\Component\HttpKernelCode
public function getLogDir() {
return $this->rootDir . '/logs';
}