function actions_loop_test_log
Write a message to the log.
2 string references to 'actions_loop_test_log'
- ActionLoopTestCase::testActionLoop in drupal-7.x/
modules/ simpletest/ tests/ actions.test - Set up a loop with 3 - 12 recursions, and see if it aborts properly.
- actions_loop_test_action_info in drupal-7.x/
modules/ simpletest/ tests/ actions_loop_test.module - Implements hook_action_info().
Archivo
- drupal-7.x/
modules/ simpletest/ tests/ actions_loop_test.module, line 63
Código
function actions_loop_test_log() {
$count = &drupal_static(__FUNCTION__, 0);
$count++;
watchdog_skip_semaphore('actions_loop_test', "Test log #$count");
}