]> granicus.if.org Git - apache/commitdiff
leave a hint about session expiration at TRACE2
authorEric Covener <covener@apache.org>
Sun, 25 Aug 2019 01:54:39 +0000 (01:54 +0000)
committerEric Covener <covener@apache.org>
Sun, 25 Aug 2019 01:54:39 +0000 (01:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1865871 13f79535-47bb-0310-9956-ffa450edef68

modules/session/mod_session.c

index 7ee477ce1dd38d1698ef13bcd33ba2e2e3724643..e62069ae531480417f9e53d24cbec069cdd474d5 100644 (file)
@@ -142,6 +142,7 @@ static apr_status_t ap_session_load(request_rec * r, session_rec ** z)
 
        /* invalidate session if session is expired */
         if (zz && zz->expiry && zz->expiry < now) {
+            ap_log_rerror(APLOG_MARK, APLOG_TRACE2, 0, r, "session is expired");
             zz = NULL;
         }
     }