WC_Webhook::get_delivery_logs()publicWC 3.3.0

Get the delivery logs for this webhook.

Method of the class: WC_Webhook{}

No Hooks.

Return

String.

Usage

$WC_Webhook = new WC_Webhook();
$WC_Webhook->get_delivery_logs();

Changelog

Since 3.3.0 Introduced.

WC_Webhook::get_delivery_logs() code WC 8.7.0

public function get_delivery_logs() {
	return add_query_arg( 'source', 'webhooks-delivery', LoggingUtil::get_logs_tab_url() );
}