ActionScheduler_Logger::log_stored_actionpublicWC 1.0

Log action stored.

Method of the class: ActionScheduler_Logger{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ActionScheduler_Logger = new ActionScheduler_Logger();
$ActionScheduler_Logger->log_stored_action( $action_id );
$action_id(int) (required)
Action ID.

ActionScheduler_Logger::log_stored_action() code WC 9.9.5

public function log_stored_action( $action_id ) {
	$this->log( $action_id, __( 'action created', 'woocommerce' ) );
}