Index: ./services/system_service/system_service.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/services/services/system_service/Attic/system_service.inc,v
retrieving revision 1.1.2.5.2.1
diff -r1.1.2.5.2.1 system_service.inc
88a89,97
> 
> /**
>  * Log a system message.
>  *
>  * @see watchdog()
>  **/
> function system_service_watchdog_send($type, $message, $variables = array(), $severity = WATCHDOG_NOTICE, $link = NULL) {
>   watchdog($type, $message, $variables, $severity, $link);
> }
Index: ./services/system_service/system_service.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/services/services/system_service/Attic/system_service.module,v
retrieving revision 1.3.2.20.2.2
diff -r1.3.2.20.2.2 system_service.module
158a159,198
> 
>     // system.watchdog
>     array(
>         '#method'   => 'system.watchdog',
>         '#callback' => 'system_service_watchdog_send',
>         '#access arguments' => array('log a system message from remote'),
>         '#file'     => array('file' => 'inc', 'module' => 'system_service'),
>         '#args'     => array(
>           array(
>             '#name'         => 'type',
>             '#type'         => 'string',
>             '#description'  => t('The category to which this message belongs.')
>           ),
>           array(
>             '#name'         => 'message',
>             '#type'         => 'string',
>             '#description'  => t('The message to store in the log. See t() for documentation on how $message and $variables interact. Keep $message translatable by not concatenating dynamic values into it!')
>           ),
>           array(
>             '#name'         => 'variables',
>             '#type'           => 'array',
>             '#optional'       => TRUE,
>             '#description'  => t('Array of variables to replace in the message on display or NULL if message is already translated or not possible to translate.')
>           ),
>           array(
>             '#name'         => 'severity',
>             '#type'           => 'int',
>             '#optional'       => TRUE,
>             '#description'  => t('The severity of the message, as per RFC 3164.')
>           ),
>           array(
>             '#name'         => 'link',
>             '#type'           => 'string',
>             '#optional'       => TRUE,
>             '#description'  => t('A link to associate with the message.')
>           ),
>         ),
>         '#return'   => 'bool',
>         '#help'     => t('Log a system message.'),
>     ),
