function actions_loop_test_log

Write a message to the log.

1 string reference to 'actions_loop_test_log'
ActionLoopTestCase::testActionLoop in drupal/modules/simpletest/tests/actions.test
Set up a loop with 3 - 12 recursions, and see if it aborts properly.

File

drupal/modules/simpletest/tests/actions_loop_test.module, line 63

Code

function actions_loop_test_log() {
  $count =& drupal_static(__FUNCTION__, 0);
  $count++;
  watchdog_skip_semaphore('actions_loop_test', "Test log #{$count}");
}