1 system.install | system_update_1087() |
Set the message length for the database log.
Related topics
File
- core/
modules/ system/ system.install, line 3466 - Install, update and uninstall functions for the system module.
Code
function system_update_1087() {
if (config_get('system.core', 'log_max_length') === NULL) {
config_set('system.core', 'log_max_length', 56);
}
}