function system_logging_settings_submit

Form submission handler for system_logging_settings().

Related topics

File

drupal/core/modules/system/system.admin.inc, line 1590
Admin page callbacks for the system module.

Code

function system_logging_settings_submit($form, &$form_state) {
  config('system.logging')
    ->set('error_level', $form_state['values']['error_level'])
    ->save();
}