[cpp-sp] 01/02: Missing param in log statement.
Scott Cantor
cantor.2 at osu.edu
Mon Oct 20 15:37:58 UTC 2025
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository cpp-sp.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=659332d9986f99a00c00a3f2a1a9ae693f859804
commit 659332d9986f99a00c00a3f2a1a9ae693f859804
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Oct 20 11:37:36 2025 -0400
Missing param in log statement.
---
shibsp/session/impl/AbstractSessionCache.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/shibsp/session/impl/AbstractSessionCache.cpp b/shibsp/session/impl/AbstractSessionCache.cpp
index 616df5fa..73cdf1ab 100644
--- a/shibsp/session/impl/AbstractSessionCache.cpp
+++ b/shibsp/session/impl/AbstractSessionCache.cpp
@@ -533,7 +533,7 @@ unique_lock<Session> AbstractSessionCache::_find(
return unique_lock<Session>();
}
- m_log.info("valid session (%s) loaded from persistent store");
+ m_log.info("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