function _hosting_task_log in Hosting 5
Same name and namespace in other branches
- 6.2 task.hosting.inc \_hosting_task_log()
- 7.4 task.hosting.inc \_hosting_task_log()
- 7.3 task.hosting.inc \_hosting_task_log()
1 string reference to '_hosting_task_log'
File
- ./
task.hosting.inc, line 3
Code
function _hosting_task_log($entry) {
$task = drush_get_context('HOSTING_TASK');
if ($task->vid) {
hosting_task_log($task->vid, $entry['type'], $entry['message'], $entry['error'], $entry['timestamp']);
}
else {
return _drush_print_log($entry);
}
if (drush_get_option('debug', FALSE)) {
return _drush_print_log($entry);
}
}