PHP code example of netbrick / nette-errbit

1. Go to this page and download the library: Download netbrick/nette-errbit library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

netbrick / nette-errbit example snippets

 php
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'));