3 * Zend Framework (http://framework.zend.com/)
5 * @link http://github.com/zendframework/zf2 for the canonical source repository
6 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7 * @license http://framework.zend.com/license/new-bsd New BSD License
12 use Zend\ServiceManager\FactoryInterface
;
13 use Zend\ServiceManager\ServiceLocatorInterface
;
18 class LoggerServiceFactory
implements FactoryInterface
20 public function createService(ServiceLocatorInterface
$serviceLocator)
22 // Configure the logger
23 $config = $serviceLocator->get('Config');
24 $logConfig = isset($config['log']) ?
$config['log'] : array();
25 $logger = new Logger($logConfig);