function actions_loop_test_log in Drupal 7
Write a message to the log.
1 string reference to 'actions_loop_test_log'
- ActionLoopTestCase::testActionLoop in modules/
simpletest/ tests/ actions.test - Set up a loop with 3 - 12 recursions, and see if it aborts properly.
File
- 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}");
}