Remove 2nd filter parameter that would never be called

This commit is contained in:
Jon Surrell 2016-11-13 20:42:45 +01:00
parent 44ea69c579
commit 9dc30a7203
1 changed files with 3 additions and 4 deletions

View File

@ -1424,19 +1424,18 @@ function wc_get_logger() {
}
/**
* Registers the included file log handler.
* Registers the included file log handler with threshold 'info'.
*
* @since 2.8
* @param array $handlers
* @param string $threshold Optional. Threshold for log handler. Defaults to 'info'.
* @return array
*/
function wc_register_file_log_handler( $handlers, $threshold = 'info' ) {
function wc_register_file_log_handler( $handlers ) {
if ( ! class_exists( 'WC_Log_Handler_File' ) ) {
include_once( dirname( __FILE__ ) . '/log-handlers/class-wc-log-handler-file.php' );
}
array_push( $handlers, new WC_Log_Handler_File( array( 'threshold' => $threshold ) ) );
array_push( $handlers, new WC_Log_Handler_File( array( 'threshold' => 'info' ) ) );
return $handlers;
}