ActionScheduler_Logger::log_failed_schedule_next_instance()publicWC 1.0

Method of the class: ActionScheduler_Logger{}

No Hooks.

Return

null. Nothing (null).

Usage

$ActionScheduler_Logger = new ActionScheduler_Logger();
$ActionScheduler_Logger->log_failed_schedule_next_instance( $action_id, $exception );
$action_id (required)
-
$exception(Exception) (required)
-

ActionScheduler_Logger::log_failed_schedule_next_instance() code WC 8.7.0

public function log_failed_schedule_next_instance( $action_id, Exception $exception ) {
	/* translators: %s: exception message */
	$this->log( $action_id, sprintf( __( 'There was a failure scheduling the next instance of this action: %s', 'woocommerce' ), $exception->getMessage() ) );
}