You are here

function system_update_8300 in Drupal 8

Add detailed cron logging configuration.

File

core/modules/system/system.install, line 2237
Install, update and uninstall functions for the system module.

Code

function system_update_8300() {
  \Drupal::configFactory()
    ->getEditable('system.cron')
    ->set('logging', 1)
    ->save(TRUE);
}