/**
  * Force logging, needed for performing test connects independent from the debugging setting.
  * 
  * @param boolean  store_log		(optional) true to store the log in the db
  */
 static function enableLogging($store_log = null)
 {
     LingotekOAuthRequestLogger::$enable_logging = true;
     if (!is_null($store_log)) {
         LingotekOAuthRequestLogger::$store_log = $store_log;
     }
 }