Add logging when remoted session lookup fails.
authorScott Cantor <cantor.2@osu.edu>
Thu, 12 Apr 2012 16:12:57 +0000 (16:12 +0000)
committerScott Cantor <cantor.2@osu.edu>
Thu, 12 Apr 2012 16:12:57 +0000 (16:12 +0000)
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;