ActionScheduler_Logger::log_failed_schedule_next_instance()
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() ActionScheduler Logger::log failed schedule next instance code WC 9.2.3
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() ) ); }