function _google_appliance_log_search_error in Google Search Appliance 8
Report search errors to the log.
File
- src/
Service/ Search.php, line 194
Namespace
Drupal\google_appliance\ServiceCode
function _google_appliance_log_search_error($search_keys = NULL, $error_string = NULL) {
$settings = _google_appliance_get_settings();
// Build log entry.
$type = 'google_appliance';
$message = 'Search for %keys produced error: %error_string';
$vars = [
'%keys' => isset($search_keys) ? $search_keys : 'nothing (empty search submit)',
'%error_string' => isset($error_string) ? $error_string : 'undefinded error',
];
// @FIXME
// l() expects a Url object, created from a route name or external URI.
// $link = l(t('view reproduction'), $settings['drupal_path'] . '/' . \Drupal\Component\Utility\Html::escape($search_keys));
Drupal::logger($type)
->notice($message, []);
}