You are here

public static function LingotekLog::info in Lingotek Translation 7.6

Same name and namespace in other branches
  1. 7.7 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::info()
  2. 7.3 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::info()
  3. 7.4 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::info()
  4. 7.5 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::info()
7 calls to LingotekLog::info()
LingotekEntity::getTitle in lib/Drupal/lingotek/LingotekEntity.php
lingotek_dashboard_command_ajax in ./lingotek.dashboard.inc
Ajax Command Processing for the Lingotek dashboard.
lingotek_delete_target_language in ./lingotek.util.inc
Flags a target language as active:FALSE in the Target Language tracking.
lingotek_get_trans_obj in ./lingotek.sync.inc
lingotek_notifications in ./lingotek.sync.inc
Registers the site translation notfication callback.

... See full list

File

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

Class

LingotekLog
Wrapper logging class for watchdog

Code

public static function info($msg, $data, $tag = 'info') {
  if (!variable_get('lingotek_api_debug', self::getDefault())) {
    return;
  }
  self::log($msg, $data, $depth = 1, WATCHDOG_INFO, $tag);
}