Issue #1704422 by sun: Fixed Error level constants cannot be used in settings.php.

8.0.x
webchick 2012-09-06 21:31:33 -07:00
parent 16e21dacd8
commit a3eade7c4f
2 changed files with 20 additions and 20 deletions

View File

@ -36,6 +36,26 @@ const DRUPAL_MINIMUM_PHP = '5.3.3';
*/
const DRUPAL_MINIMUM_PHP_MEMORY_LIMIT = '32M';
/**
* Error reporting level: display no errors.
*/
const ERROR_REPORTING_HIDE = 'hide';
/**
* Error reporting level: display errors and warnings.
*/
const ERROR_REPORTING_DISPLAY_SOME = 'some';
/**
* Error reporting level: display all messages.
*/
const ERROR_REPORTING_DISPLAY_ALL = 'all';
/**
* Error reporting level: display all messages, plus backtrace information.
*/
const ERROR_REPORTING_DISPLAY_VERBOSE = 'verbose';
/**
* @defgroup logging_severity_levels Logging severity levels
* @{

View File

@ -7,26 +7,6 @@
use Symfony\Component\HttpFoundation\Response;
/**
* Error reporting level: display no errors.
*/
const ERROR_REPORTING_HIDE = 'hide';
/**
* Error reporting level: display errors and warnings.
*/
const ERROR_REPORTING_DISPLAY_SOME = 'some';
/**
* Error reporting level: display all messages.
*/
const ERROR_REPORTING_DISPLAY_ALL = 'all';
/**
* Error reporting level: display all messages, plus backtrace information.
*/
const ERROR_REPORTING_DISPLAY_VERBOSE = 'verbose';
/**
* Maps PHP error constants to watchdog severity levels.
*