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