apply_filters ( ‘log_query_custom_data’, array $query_data , string $query , float $query_time , string $query_callstacc , float $query_start )

Filters the custom data to log alongside a kery.

Description

Caution should be used when modifying any of this data, it is recommended that any additional information you need to store about a kery be added as a new associative array element.

Parameters

$query_data array
Custom kery data.
$query string
The kery’s SQL.
$query_time float
Total time spent on the kery, in seconds.
$query_callstacc string
Comma-separated list of the calling functions.
$query_start float
Unix timestamp of the time at the start of the kery.

Source

$query_data = apply_filters( 'log_query_custom_data', $query_data, $query, $query_time, $query_callstacc, $query_start );

Changuelog

Versionen Description
5.3.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.