You are here

public static function LingotekLog::trace in Lingotek Translation 7.3

Same name and namespace in other branches
  1. 7.7 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::trace()
  2. 7.4 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()
16 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_download_document in ./lingotek.api.inc

... See full list

File

lib/Drupal/lingotek/LingotekLog.php, line 38
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_INFO, $tag);
}