ActionScheduler_Logger::log_started_action()publicWC 1.0

Method of the class: ActionScheduler_Logger{}

No Hooks.

Return

null. Nothing (null).

Usage

$ActionScheduler_Logger = new ActionScheduler_Logger();
$ActionScheduler_Logger->log_started_action( $action_id, $context );
$action_id (required)
-
$context **
-
Default: ''

ActionScheduler_Logger::log_started_action() code WC 8.6.1

public function log_started_action( $action_id, $context = '' ) {
	if ( ! empty( $context ) ) {
		/* translators: %s: context */
		$message = sprintf( __( 'action started via %s', 'woocommerce' ), $context );
	} else {
		$message = __( 'action started', 'woocommerce' );
	}
	$this->log( $action_id, $message );
}