Available since: 2.9.15
searchwp_debug_detailed
View Parameters »When debugging in SearchWP quite a bit of data is added to the debug log. With this hook you can tell SearchWP to log even more data if you’d like:
Note that debugging must be enabled for this filter to take effect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Show more detail in SearchWP's debug log. | |
add_filter( 'searchwp_debug', '__return_true' ); | |
add_filter( 'searchwp_debug_detailed', '__return_true' ); |
Parameters
Parameter | Type | Description |
---|---|---|
$detailed |
Boolean |
Whether more detail is inclued in debug log entries |