public function Log::end in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Database/Log.php \Drupal\Core\Database\Log::end()
- 10 core/lib/Drupal/Core/Database/Log.php \Drupal\Core\Database\Log::end()
Stop logging for the specified logging key.
Parameters
$logging_key: The logging key to stop.
File
- core/
lib/ Drupal/ Core/ Database/ Log.php, line 99
Class
- Log
- Database query logger.
Namespace
Drupal\Core\DatabaseCode
public function end($logging_key) {
unset($this->queryLog[$logging_key]);
}