Skip to content

netbrick/nette-errbit

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nette Errbit (Airbrake) error logger

Errbit (Airbrake) error handler for nette applications. For communication with errbit it use package flippa/errbit-php.

Latest Stable Version Latest Unstable Version License

Warning: This logger isn't working well od developemnt mode in nette. Handling errors in production is fine. In development you have Tracy with all stack trace and you don't need to log this errros on errbit.

Instalation

Install package via composer:

composer require netbrick/nette-errbit

Usage

In Nette application add config file:

parameters:
	errbit:
		send_errors: true
		api_key: your-api-key
		host: errbit-host.com
		port: 80                                        # optional
		secure: false                                   # optional
		project_root: /your/project/root                # optional
		environment_name: production                    # optional
		params_filters: ['/password/', '/card_number/'] # optional
		backtrace_filters: ['#/some/long/path#']        # optional

All configurations are based on package flippa/errbit-php

In nette application you add this line to bootstrap.php after you create $container:

Netbrick\Errbit\ErrbitLogger::register($container->parameters['errbit']);
Netbrick\Errbit\ErrbitLogger::ignoreNotices();
Netbrick\Errbit\ErrbitLogger::addIgnoreMessage('Some exception message text');

// Default log priorities: error, exception. To rewrite call:
Netbrick\Errbit\ErrbitLogger::setLogPriorities(array('error', 'exception', 'access'));

Thats it! You should see your logs in your errbit

About

Errbit error handler for nette applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 99.5%
  • Makefile 0.5%