You appear to be a bot. Output may be restricted
Description
Usage
Jetpack_Search_Performance_Logger::__construct();
Parameters
Returns
void
Source
File name: jetpack/_inc/lib/class.jetpack-search-performance-logger.php
Lines:
1 to 7 of 7
private function __construct() { $this->stats = array(); add_action( 'pre_get_posts', array( $this, 'begin_log_query' ), 10, 1 ); add_action( 'did_jetpack_search_query', array( $this, 'log_jetpack_search_query' ) ); add_filter( 'found_posts', array( $this, 'log_mysql_query' ), 10, 2 ); add_action( 'wp_footer', array( $this, 'print_stats' ) ); }