You are here

function _log_to_watchdog in Currency 5

1 call to _log_to_watchdog()
currency_api_convert in currency_api/currency_api.module
Currency exchange rate API function

File

currency_api/currency_api.module, line 597

Code

function _log_to_watchdog($msg = '', $severity = WATCHDOG_NOTICE, $type = 'user') {
  if (variable_get('currency_api_watchdog', 1)) {
    watchdog($type, $msg, $severity);
  }
}