You are here

public static function LingotekLog::trace in Lingotek Translation 7.6

Same name and namespace in other branches
  1. 7.7 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::trace()
  2. 7.3 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::trace()
  3. 7.4 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::trace()
  4. 7.5 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::trace()
15 calls to LingotekLog::trace()
LingotekApi::request in lib/Drupal/lingotek/LingotekApi.php
Calls a Lingotek API method.
lingotek_add_missing_locales in ./lingotek.util.inc
Fills in any missing lingotek_locale values to the languages table
lingotek_batch_identify_translations in ./lingotek.util.inc
Batch Create: Lingotek Identify Content - create informative lingotek_entity_ data (in lingotek table) for pre-existing content
lingotek_cron in ./lingotek.module
Implements hook_cron().
lingotek_download_translations_form in ./lingotek.page.inc
Download Translations Form.

... See full list

File

lib/Drupal/lingotek/LingotekLog.php, line 55
LingotekLog

Class

LingotekLog
Wrapper logging class for watchdog

Code

public static function trace($msg, $data = NULL, $tag = 'trace') {
  if (!variable_get('lingotek_trace_log', FALSE)) {
    return;
  }
  self::log($msg, $data, $depth = 1, WATCHDOG_DEBUG, $tag);
}