You are here

function DrupalGoogleMini::log in Google Search Appliance 6.2

Same name and namespace in other branches
  1. 5 DrupalGoogleMini.php \DrupalGoogleMini::log()

Overrides GoogleMini::log

File

./DrupalGoogleMini.php, line 14

Class

DrupalGoogleMini

Code

function log($message = NULL) {
  if ($this->debug_callback) {
    $callback = $this->debug_callback;
    call_user_func($callback, $message);
  }
  watchdog("google_appliance", $message);
}