mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
removing unneeded LOG_* constant checks
This commit is contained in:
parent
e6860fb856
commit
6ede36f8e0
1 changed files with 0 additions and 33 deletions
|
@ -19,39 +19,6 @@
|
||||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
|
||||||
* Set up error level constants to be used within the framework if they are not defined within the
|
|
||||||
* system.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
if (!defined('LOG_EMERG')) {
|
|
||||||
define('LOG_EMERG', 0);
|
|
||||||
}
|
|
||||||
if (!defined('LOG_ALERT')) {
|
|
||||||
define('LOG_ALERT', 1);
|
|
||||||
}
|
|
||||||
if (!defined('LOG_CRIT')) {
|
|
||||||
define('LOG_CRIT', 2);
|
|
||||||
}
|
|
||||||
if (!defined('LOG_ERR')) {
|
|
||||||
define('LOG_ERR', 3);
|
|
||||||
}
|
|
||||||
if (!defined('LOG_ERROR')) {
|
|
||||||
define('LOG_ERROR', LOG_ERR);
|
|
||||||
}
|
|
||||||
if (!defined('LOG_WARNING')) {
|
|
||||||
define('LOG_WARNING', 4);
|
|
||||||
}
|
|
||||||
if (!defined('LOG_NOTICE')) {
|
|
||||||
define('LOG_NOTICE', 5);
|
|
||||||
}
|
|
||||||
if (!defined('LOG_INFO')) {
|
|
||||||
define('LOG_INFO', 6);
|
|
||||||
}
|
|
||||||
if (!defined('LOG_DEBUG')) {
|
|
||||||
define('LOG_DEBUG', 7);
|
|
||||||
}
|
|
||||||
|
|
||||||
App::uses('LogEngineCollection', 'Log');
|
App::uses('LogEngineCollection', 'Log');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue