Cascade\Config\Loader\ClassLoader\LoggerLoader::addHandlers PHP Метод

addHandlers() приватный Метод

Add handlers to the Logger
private addHandlers ( array $handlers )
$handlers array
    private function addHandlers(array $handlers)
    {
        // We need to reverse the array because Monolog "pushes" handlers to top of the stack
        foreach (array_reverse($handlers) as $handler) {
            $this->logger->pushHandler($handler);
        }
    }