global $CFG;
if ($this->record and $this->record->sid != $sid) {
- error_log('Weird error reading session - mismatched sid');
+ error_log('Weird error reading database session - mismatched sid');
return '';
}
} catch (Exception $ignored) {
}
- error_log('Can not write session - please verify max_allowed_packet is at least 4M!');
+ error_log('Can not write database session - please verify max_allowed_packet is at least 4M!');
} else {
- error_log('Can not write session');
+ error_log('Can not write database session');
}
}
try {
$this->database->get_session_lock($this->record->id);
} catch (dml_exception $ex) {
- error_log('Can not write new session');
+ error_log('Can not write new database session');
}
}