public static function LingotekLog::info in Lingotek Translation 7.4
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.5 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::info()
- 7.6 lib/Drupal/lingotek/LingotekLog.php \LingotekLog::info()
4 calls to LingotekLog::info()
- 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_notifications in ./
lingotek.sync.inc - Registers the site translation notfication callback.
- lingotek_set_target_language in ./
lingotek.util.inc - Sets the extended target language locale in the languages table and whether or not it is enabled
File
- lib/
Drupal/ lingotek/ LingotekLog.php, line 34 - LingotekLog
Class
- LingotekLog
- Wrapper logging class for watchdog
Code
public static function info($msg, $data, $tag = '') {
if (!variable_get('lingotek_api_debug', self::getDefault())) {
return;
}
self::log($msg, $data, $depth = 1, WATCHDOG_INFO, $tag);
}