You are here

function GoogleMini::log in Google Search Appliance 6.2

Same name and namespace in other branches
  1. 5 GoogleMini.php \GoogleMini::log()
2 calls to GoogleMini::log()
GoogleMini::buildQuery in ./GoogleMini.php
Fires the query to google
GoogleMini::query in ./GoogleMini.php
1 method overrides GoogleMini::log()
DrupalGoogleMini::log in ./DrupalGoogleMini.php

File

./GoogleMini.php, line 25

Class

GoogleMini

Code

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