public static function LingotekLog::info in Lingotek Translation 7.6
Same name and namespace in other branches
- 7.7 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::info()
- 7.3 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::info()
- 7.4 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::info()
- 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.
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);
}