Implements hook_action_info().
function actions_loop_test_action_info() {
return array(
'actions_loop_test_log' => array(
'label' => t('Write a message to the log.'),
'type' => 'system',
'configurable' => FALSE,
'triggers' => array(
'any',
),
),
);
}