ActionScheduler_Logger::log_failed_schedule_next_instance()publicWC 1.0

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

Хуков нет.

Возвращает

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

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

$ActionScheduler_Logger = new ActionScheduler_Logger();
$ActionScheduler_Logger->log_failed_schedule_next_instance( $action_id, $exception );
$action_id (обязательный)
-
$exception(Exception) (обязательный)
-

Код ActionScheduler_Logger::log_failed_schedule_next_instance() 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() ) );
}