Warning: This method has been deprecated. Use a plugin instead. See #41217 for an example.

WP_Community_Events::maybe_log_events_response( string $message, array $details )

Logs responses to Events API requests.


Parameters

$message string Required
A description of what occurred.
$details array Required
Details that provide more context for the log entry.

Top ↑

Source

File: wp-admin/includes/class-wp-community-events.php. View all references

protected function maybe_log_events_response( $message, $details ) {
	_deprecated_function( __METHOD__, '4.9.0' );

	if ( ! WP_DEBUG_LOG ) {
		return;
	}

	error_log(
		sprintf(
			'%s: %s. Details: %s',
			__METHOD__,
			trim( $message, '.' ),
			wp_json_encode( $details )
		)
	);
}


Top ↑

Changelog

Changelog
Version Description
4.9.0 Use a plugin instead. See #41217 for an example.
4.8.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.