ActionScheduler_Logger::log_started_action()
Метод класса: ActionScheduler_Logger{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$ActionScheduler_Logger = new ActionScheduler_Logger(); $ActionScheduler_Logger->log_started_action( $action_id, $context );
- $action_id (обязательный)
- -
- $context **
- -
По умолчанию: ''
Код ActionScheduler_Logger::log_started_action() ActionScheduler Logger::log started action WC 9.2.3
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 ); }