You are here

function system_service_watchdog_send in Services 6.2

Log a system message.

Parameters

$type: The category to which this message belongs.

$message: The message to store in the log.

$variables: Array of variables to replace in the message on display.

$severity: The severity of the message, as per RFC 3164.

$link: A link to associate with the message.

See also

watchdog()

1 string reference to 'system_service_watchdog_send'
system_service_service in services/system_service/system_service.module
Implementation of hook_service().

File

services/system_service/system_service.inc, line 163
Link general system functionalities to services module.

Code

function system_service_watchdog_send($type, $message, $variables = array(), $severity = WATCHDOG_NOTICE, $link = NULL) {
  watchdog($type, $message, $variables, $severity, $link);
}