public function LoggingForm::submitForm in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/src/Form/LoggingForm.php \Drupal\system\Form\LoggingForm::submitForm()
Form submission handler.
Parameters
array $form: An associative array containing the structure of the form.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Overrides ConfigFormBase::submitForm
File
- core/
modules/ system/ src/ Form/ LoggingForm.php, line 53
Class
- LoggingForm
- Configure logging settings for this site.
Namespace
Drupal\system\FormCode
public function submitForm(array &$form, FormStateInterface $form_state) {
$this
->config('system.logging')
->set('error_level', $form_state
->getValue('error_level'))
->save();
parent::submitForm($form, $form_state);
}