Commit 3653f43eab780a18e9620366f363713e98902048
1 parent
10e18f3c
Changed logging level to INFO.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2892 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
lib/session/Session.inc
| ... | ... | @@ -160,11 +160,11 @@ class Session { |
| 160 | 160 | } |
| 161 | 161 | } else { |
| 162 | 162 | // the session doesn't exist in the db |
| 163 | - $default->log->error("Session::verify sessionID=$sessionID, not in db"); | |
| 163 | + $default->log->info("Session::verify sessionID=$sessionID, not in db"); | |
| 164 | 164 | $sessionStatus = false; |
| 165 | 165 | } |
| 166 | 166 | } else { |
| 167 | - $default->log->error("Session::verify session not in db"); | |
| 167 | + $default->log->info("Session::verify session not in db"); | |
| 168 | 168 | // there is no session |
| 169 | 169 | $sessionStatus = false; |
| 170 | 170 | } | ... | ... |