Filters the custom data to log alongside a query.
Description
Caution should be used when modifying any of this data, it is recommended that any additional information you need to store about a query be added as a new associative array element.
Parameters
$query_dataarray- Custom query data.
$querystring- The query’s SQL.
$query_timefloat- Total time spent on the query, in seconds.
$query_callstackstring- Comma-separated list of the calling functions.
$query_startfloat- Unix timestamp of the time at the start of the query.
Source
$query_data = apply_filters( 'log_query_custom_data', $query_data, $query, $query_time, $query_callstack, $query_start );
Changelog
| Version | Description |
|---|---|
| 5.3.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.