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
- Host: GitHub
- URL: https://github.com/nojimage/cakephp-skiplog
- Owner: nojimage
- License: mit
- Created: 2018-06-27T08:23:11.000Z (about 8 years ago)
- Default Branch: 2.x
- Last Pushed: 2018-06-27T08:51:13.000Z (about 8 years ago)
- Last Synced: 2025-08-05T01:51:24.271Z (11 months ago)
- Topics: cakephp-plugin, logging
- Language: PHP
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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`.