An open API service indexing awesome lists of open source software.

https://github.com/nojimage/cakephp-skiplog

Skip logging for Missing Exceptions on CakePHP
https://github.com/nojimage/cakephp-skiplog

cakephp-plugin logging

Last synced: 5 months ago
JSON representation

Skip logging for Missing Exceptions on CakePHP

Awesome Lists containing this project

README

          

# Skip logging for Missing Exceptions on CakePHP

This plugin only set `Exception.skipLog`.

Skip Exceptions is:

- MissingControllerException
- MissingActionException
- PrivateActionException

## Installation

You can install this plugin into your CakePHP application using [composer](http://getcomposer.org).

The recommended way to install composer packages is:

```
composer require nojimage/skip-missing-exception-log
```

You will need to add the following line to your application's bootstrap.php file:

```
CakePlugin::load('SkipMissingExceptionLog', array('bootstrap' => true));
```

## Note

This plugin only run `debug=0`.