Commit d33f5ee243c92aa542e7dbcf6ee4760480b24700

Authored by Neil Blakey-Milner
1 parent 1e622604

Remove testing info-level log messages


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@5365 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 0 additions and 3 deletions
lib/session/Session.inc
... ... @@ -72,7 +72,6 @@ class Session {
72 72 );
73 73 require_once(KT_LIB_DIR . '/users/userhistory.inc.php');
74 74 $res = KTUserHistory::createFromArray($aParams);
75   - $default->log->info("saving user history - " . print_r($res, true));
76 75  
77 76 $oUser->setLastLogin(getCurrentDateTime());
78 77 $oUser->update();
... ... @@ -106,7 +105,6 @@ class Session {
106 105 );
107 106 require_once(KT_LIB_DIR . '/users/userhistory.inc.php');
108 107 $res = KTUserHistory::createFromArray($aParams);
109   - $default->log->info("saving user history - " . print_r($res, true));
110 108  
111 109 // remove the php4 session
112 110 unset($_SESSION['userID']);
... ... @@ -147,7 +145,6 @@ class Session {
147 145 );
148 146 require_once(KT_LIB_DIR . '/users/userhistory.inc.php');
149 147 $res = KTUserHistory::createFromArray($aParams);
150   - $default->log->info("saving user history - " . print_r($res, true));
151 148  
152 149 DBUtil::whereDelete($sTable, array('id' => $iId));
153 150 }
... ...