Parcourir la source

Remove error_log

Yannick Warnier il y a 10 ans
Parent
commit
b80fcb78c8
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  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');
     }
-}
+}