function Log::clear
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Database/Log.php \Drupal\Core\Database\Log::clear()
- 10 core/lib/Drupal/Core/Database/Log.php \Drupal\Core\Database\Log::clear()
- 11.x core/lib/Drupal/Core/Database/Log.php \Drupal\Core\Database\Log::clear()
Empty the query log for the specified logging key.
This method does not stop logging, it simply clears the log. To stop logging, use the end() method.
Parameters
$logging_key: The logging key to empty.
1 call to Log::clear()
- Log::start in core/
lib/ Drupal/ Core/ Database/ Log.php - Begin logging queries to the specified connection and logging key.
File
-
core/
lib/ Drupal/ Core/ Database/ Log.php, line 89
Class
- Log
- Database query logger.
Namespace
Drupal\Core\DatabaseCode
public function clear($logging_key) {
$this->queryLog[$logging_key] = [];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.