WPCF7_Stripe_API::log()privateCF7 1.0

Sends a debug information for a remote request to the PHP error log.

Метод класса: WPCF7_Stripe_API{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

// private - только в коде основоного (родительского) класса
$result = $this->log( $url, $request, $response );
$url(строка) (обязательный)
URL to retrieve.
$request(массив) (обязательный)
Request arguments.
$response(массив|WP_Error) (обязательный)
The response or WP_Error on failure.

Код WPCF7_Stripe_API::log() CF7 5.9.3

private function log( $url, $request, $response ) {
	wpcf7_log_remote_request( $url, $request, $response );
}