1 system.admin.inc | system_logging_settings($form, &$form_state) |
Form builder; Configure error reporting settings.
See also
system_logging_settings_validate()
Related topics
File
- core/
modules/ system/ system.admin.inc, line 1657 - Admin page callbacks for the System module.
Code
function system_logging_settings($form, &$form_state) {
$site_config = config('system.core');
$form['#config'] = 'system.core';
$form['error_level'] = array(
'#type' => 'radios',
'#title' => t('Error messages to display'),
'#default_value' => $site_config->get('error_level'),
'#options' => array(
ERROR_REPORTING_HIDE => t('None'),
ERROR_REPORTING_DISPLAY_SOME => t('Errors and warnings'),
ERROR_REPORTING_DISPLAY_ALL => t('All messages'),
),
'#description' => t('It is recommended that sites running on production environments do not display any errors.'),
);
$form['watchdog_enabled_severity_levels'] = array(
'#type' => 'checkboxes',
'#title' => t('Severity of messages to log'),
'#options' => watchdog_severity_levels(),
'#default_value' => $site_config->get('watchdog_enabled_severity_levels'),
'#description' => t('The <em>debug</em> and <em>deprecated</em> severity levels are recommended for developer environments, but not on production sites.'),
);
return system_settings_form($form);
}