You are here

function _webform_protected_downloads_log in Webform Protected Downloads 6

Same name and namespace in other branches
  1. 7 webform_protected_downloads.module \_webform_protected_downloads_log()

Wrapper around watchdog

Parameters

string $msg :

array $variables :

string $severity :

string $link :

Return value

void

1 call to _webform_protected_downloads_log()
webform_protected_downloads_process_submissions in ./webform_protected_downloads.module
Process unprocessed webform submissions

File

./webform_protected_downloads.module, line 966
This file contains hook declarations and functions for the Webform Protected Downloads module.

Code

function _webform_protected_downloads_log($msg, $variables, $severity = WATCHDOG_NOTICE, $link = NULL) {
  watchdog(WEBFORM_PROTECTED_DOWNLOADS_WATCHDOG_ID, $msg, $variables, $severity, $link);
}