[cpp-sp] branch main updated: Lower logging on a couple of messages.
Codeberg
noreply at shibboleth.net
Fri Dec 5 21:56:43 UTC 2025
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository cpp-sp.
View the commit online:
https://codeberg.org/Shibboleth/cpp-sp/commit/9c65ec4634b1260a059e9bbbb4848d6a612a4da7
The following commit(s) were added to refs/heads/main by this push:
new 9c65ec46 Lower logging on a couple of messages.
9c65ec46 is described below
commit 9c65ec4634b1260a059e9bbbb4848d6a612a4da7
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Dec 5 16:56:33 2025 -0500
Lower logging on a couple of messages.
---
shibsp/session/impl/AbstractSessionCache.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/shibsp/session/impl/AbstractSessionCache.cpp b/shibsp/session/impl/AbstractSessionCache.cpp
index a3d05a2d..f4e17f18 100644
--- a/shibsp/session/impl/AbstractSessionCache.cpp
+++ b/shibsp/session/impl/AbstractSessionCache.cpp
@@ -548,7 +548,7 @@ unique_lock<Session> AbstractSessionCache::_find(
// Note this performs the relevant enforcement for us.
obj = cache_read(request, applicationId, key, version, lifetime, timeout, client_addr);
if (obj.isnull()) {
- log(INFO_MARK, "session (%s) not available in persistent store", key);
+ log(DEBUG_MARK, "session (%s) not available in persistent store", key);
return unique_lock<Session>();
}
}
@@ -557,7 +557,7 @@ unique_lock<Session> AbstractSessionCache::_find(
return unique_lock<Session>();
}
- log(INFO_MARK, "valid session (%s) loaded from persistent store", key);
+ log(DEBUG_MARK, "valid session (%s) loaded from persistent store", key);
// Wrap the object in a local wraper to guard it before it's saved off.
unique_ptr<BasicSession> newSession(new BasicSession(*this, obj));
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list