2017 © Pedro Peláez
 

library buglogger

image

renanliberato/buglogger

  • Tuesday, March 6, 2018
  • by renanliberato
  • Repository
  • 1 Watchers
  • 0 Stars
  • 4 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

BugLogger

Zend Framework 3 module to log Exceptions handled., (*1)

Thanks

This repo was made based on GMBN implementation of a module to work with handled Exceptions., (*2)

Configuration

BugLogger\config\module.config.php

<?php
return array(
    'service_manager' => array(
        'factories' => array(
            \Zend\Db\Adapter\Adapter::class => \Zend\Db\Adapter\AdapterServiceFactory::class,
        ),
        'abstract_factories' => array(
            'Zend\Db\Adapter\AdapterAbstractServiceFactory',
        ),
    ),
    'db' => array(
        'adapters' => array(
            'logAdapter' => array(
                'driver'         => 'Pdo',
                'dsn'            => 'mysql:dbname=Logger;host=172.17.0.2',
                'username'       => 'YOURUSERNAME',
                'password'       => 'YOURPASSWORD',

                'driver_options' => array(
                    \PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES \'UTF8\''
                ),
            ),
        )
    ),
    "logbug" => array(
        'ignore' => array(
            'code'=> array(
                '403'
            )
        )
    )
);

Zend Framework Modules

This application was tested into a recent installed ZendSkeletonApplication so it uses the default MVC components., (*3)

Specific modules used: - zend-db - zend-eventmanager - zend-servicemanager-di, (*4)

Database

There is a table dump inside docs folder. The default database's name is Logger., (*5)

The Versions

06/03 2018

1.0.0

1.0.0.0

  Sources   Download

30/08 2016

dev-master

9999999-dev https://github.com/renanliberato/BugLogger

Zend Framework 3 module to log Exceptions handled.

  Sources   Download

The Requires

 

by Renan Liberato

log module exception zendframework zf3 bug

30/08 2016

1.0.1

1.0.1.0 https://github.com/renanliberato/BugLogger

Zend Framework 3 module to log Exceptions handled.

  Sources   Download

The Requires

 

by Renan Liberato

log module exception zendframework zf3 bug