You are here

public static function LingotekLog::trace in Lingotek Translation 7.4

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.5 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::trace()
  4. 7.6 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::trace()
17 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_content in ./lingotek.batch.inc
Batch Create: Lingotek Identify Content - create informative lingonode data (in lingotek table) for pre-existing content
lingotek_cleanup_utility in ./lingotek.util.inc
Clean-up utility
lingotek_cron in ./lingotek.module
Implements hook_cron().

... 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 = '') {
  if (!variable_get('lingotek_trace_log', FALSE)) {
    return;
  }
  self::log($msg, $data, $depth = 1, WATCHDOG_DEBUG, $tag);
}