2017 © Pedro Peláez
 

library monolog-zf2

Monolog wrapper for zf2

image

ebittleman/monolog-zf2

Monolog wrapper for zf2

  • Tuesday, December 29, 2015
  • by ebittleman
  • Repository
  • 1 Watchers
  • 1 Stars
  • 44 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Monolog Zend Framework 2 Wrapper

Build Status Packagist, (*1)

This project is a basic wrapper for the Monolog logger check it out for all the bells and whistles here., (*2)

Installation

Install the Package

composer require ebittleman/monolog-zf2

Enable Zf2 Module

Update your application config to include the module., (*3)

return array(
    'modules' => array(
        ...YOUR MODULES...,
        'MonologZf2'
    ),
    'module_listener_options' => array(
        'config_glob_paths' => array(
            ...YOUR CONFIG PATHS...
        ),
        'module_paths' => array(
            ...YOUR MODULES PATHS...
        )
    )
);

Config Example

The following configuration will make 2 different loggers available from the service manager where the service name is the array key. Each logger is configured with a list of handlers, each of which has a handlerClass and args that will be passed to the handler's constructor. This example can be found in /config/monolog.global.dist, (*4)

<?php
use Monolog\Logger;
use Monolog\Handler\ErrorLogHandler;

return array(
    'monolog' => array(
        'defaultLogger' => 'Monolog\Log',
        'logs' => array(
            'Monolog\Log' => array(
                    'handlers' => array(
                        array(
                            'handlerClass' => 'Monolog\Handler\StreamHandler',
                            'args' => array(
                                '/tmp/log.log',
                                Logger::DEBUG
                            )
                        ),
                        array(
                            'handlerClass' => 'Monolog\Handler\ErrorLogHandler',
                            'args' => array(
                                ErrorLogHandler::OPERATING_SYSTEM,
                                Logger::ERROR
                        )
                    )
                )
            ),
            'Monolog\ErrorLog' => array(
                'handlers' => array(
                    array(
                        'handlerClass' => 'Monolog\Handler\ErrorLogHandler',
                    )
                )
            )
        ),
    )
);

Usage

<?php
namespace MyNamespace;

class SomeFactory
{
    public function __invoke($serviceLocator)
    {
        $defaultLogger = $serviceLocator->get('Monolog\Log');
        $errorLogger = $serviceLocator->get('Monolog\ErrorLog');

        return new Service($defaultLogger, $errorLogger);
    }
}

Initializer Dependency Injection

The following service will be intialized with the default logger defined in the configuration. In order to select a specific logger to be injected you would un-comment the LOGGER constant of the service., (*5)

<?php
namespace MyNamespace

use Psr\Log\LoggerAwareInterface;
use Psr\Log\LoggerAwareTrait;

class ExampleService implements LoggerAwareInterface
{
    use LoggerAwareTrait;

    // const LOGGER = 'Someother\Log';

    public function serviceCall()
    {
        $this->logger->debug('write this to the log');
    }
}

The Versions

29/12 2015

dev-master

9999999-dev

Monolog wrapper for zf2

  Sources   Download

The MIT License (MIT)

The Requires

 

The Development Requires

by Eric Bittleman

monolog zf2 zendframework

02/06 2015

1.1.0

1.1.0.0

Monolog wrapper for zf2

  Sources   Download

The MIT License (MIT)

The Requires

 

The Development Requires

by Eric Bittleman

monolog zf2 zendframework

31/05 2015

1.0.0

1.0.0.0

Monolog wrapper for zf2

  Sources   Download

The MIT License (MIT)

The Requires

 

The Development Requires

by Eric Bittleman

monolog zf2 zendframework