function hosting_task_log in Hosting 5
Same name and namespace in other branches
- 6.2 task/hosting_task.module \hosting_task_log()
- 7.4 task/hosting_task.module \hosting_task_log()
- 7.3 task/hosting_task.module \hosting_task_log()
2 calls to hosting_task_log()
File
- task/
hosting_task.module, line 66 - Web server node type is defined here.
Code
function hosting_task_log($vid, $type, $message, $error = '', $timestamp = null) {
$timestamp = $timestamp ? $timestamp : mktime();
db_query("INSERT INTO {hosting_task_log} (vid, type, message, error, timestamp) VALUES (%d, '%s', '%s', '%s', %d)", $vid, $type, $message, $error, $timestamp);
}