浏览代码

Remove error_log

Yannick Warnier 10 年之前
父节点
当前提交
b80fcb78c8
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      main/inc/lib/chamilo_session.class.php

+ 1 - 2
main/inc/lib/chamilo_session.class.php

@@ -138,7 +138,6 @@ class ChamiloSession extends System\Session
         // If the session time has expired, refresh the starttime value,
         //  so we're starting to count down from a later time
         if ( $session->has('starttime') && $session->is_expired()) {
-            error_log(microtime().' -- '.__LINE__);
             $session->destroy();
         } else {
             //error_log('Time not expired, extend session for a bit more');
@@ -210,4 +209,4 @@ class ChamiloSession extends System\Session
     {
         return Session::read('_gid');
     }
-}
+}