Add logging when remoted session lookup fails.
authorscantor <scantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Thu, 12 Apr 2012 16:12:57 +0000 (16:12 +0000)
committerscantor <scantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Thu, 12 Apr 2012 16:12:57 +0000 (16:12 +0000)
git-svn-id: https://svn.shibboleth.net/cpp-sp/branches/REL_2@3619 cb58f699-b61c-0410-a6fe-9272a202ed29

shibsp/impl/StorageServiceSessionCache.cpp

index 20c02d0..8a921d7 100644 (file)
@@ -1774,6 +1774,7 @@ void SSCache::receive(DDF& in, ostream& out)
         string record;
         time_t lastAccess;
         if (!m_storage->readText(key, "session", &record, &lastAccess)) {
+            m_log.debug("session not found in cache (%s)", key);
             DDF ret(nullptr);
             DDFJanitor jan(ret);
             out << ret;