[cpp-sp] branch master updated: CPPOST-104 - Rationalize logging names for Metadata Providers
Scott Cantor
cantor.2 at osu.edu
Wed Mar 21 15:47:52 EDT 2018
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository cpp-sp.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=6c5de220d85612a89c8d01fb1919bb9d62508a87
The following commit(s) were added to refs/heads/master by this push:
new 6c5de22 CPPOST-104 - Rationalize logging names for Metadata Providers
6c5de22 is described below
commit 6c5de220d85612a89c8d01fb1919bb9d62508a87
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Mar 21 15:47:37 2018 -0400
CPPOST-104 - Rationalize logging names for Metadata Providers
https://issues.shibboleth.net/jira/browse/CPPOST-104
---
shibsp/binding/impl/ArtifactResolver.cpp | 2 +-
shibsp/handler/impl/AssertionLookup.cpp | 2 +-
shibsp/handler/impl/AttributeCheckerHandler.cpp | 2 +-
shibsp/handler/impl/DiscoveryFeed.cpp | 2 +-
shibsp/handler/impl/ExternalAuthHandler.cpp | 2 +-
shibsp/handler/impl/MetadataGenerator.cpp | 2 +-
shibsp/handler/impl/SessionHandler.cpp | 2 +-
shibsp/handler/impl/StatusHandler.cpp | 2 +-
8 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/shibsp/binding/impl/ArtifactResolver.cpp b/shibsp/binding/impl/ArtifactResolver.cpp
index edff5c5..41bc232 100644
--- a/shibsp/binding/impl/ArtifactResolver.cpp
+++ b/shibsp/binding/impl/ArtifactResolver.cpp
@@ -140,7 +140,7 @@ ArtifactResponse* ArtifactResolver::resolve(
opensaml::SecurityPolicy& policy
) const
{
- Category& log = Category::getInstance(SHIBSP_LOGCAT ".ArtifactResolver");
+ Category& log = Category::getInstance(SHIBSP_LOGCAT ".Handler.ArtifactResolver");
MetadataCredentialCriteria mcc(ssoDescriptor);
shibsp::SecurityPolicy& sppolicy = dynamic_cast<shibsp::SecurityPolicy&>(policy);
diff --git a/shibsp/handler/impl/AssertionLookup.cpp b/shibsp/handler/impl/AssertionLookup.cpp
index 82c97f9..e125962 100644
--- a/shibsp/handler/impl/AssertionLookup.cpp
+++ b/shibsp/handler/impl/AssertionLookup.cpp
@@ -84,7 +84,7 @@ namespace shibsp {
};
AssertionLookup::AssertionLookup(const DOMElement* e, const char* appId)
- : SecuredHandler(e, Category::getInstance(SHIBSP_LOGCAT ".AssertionLookup"), "exportACL", "127.0.0.1 ::1")
+ : SecuredHandler(e, Category::getInstance(SHIBSP_LOGCAT ".Handler.AssertionLookup"), "exportACL", "127.0.0.1 ::1")
{
setAddress("run::AssertionLookup");
}
diff --git a/shibsp/handler/impl/AttributeCheckerHandler.cpp b/shibsp/handler/impl/AttributeCheckerHandler.cpp
index 01d1806..fb61caa 100644
--- a/shibsp/handler/impl/AttributeCheckerHandler.cpp
+++ b/shibsp/handler/impl/AttributeCheckerHandler.cpp
@@ -105,7 +105,7 @@ namespace shibsp {
};
AttributeCheckerHandler::AttributeCheckerHandler(const DOMElement* e, const char* appId)
- : AbstractHandler(e, Category::getInstance(SHIBSP_LOGCAT ".AttributeCheckerHandler"), &g_Blocker)
+ : AbstractHandler(e, Category::getInstance(SHIBSP_LOGCAT ".Handler.AttributeChecker"), &g_Blocker)
{
if (!SPConfig::getConfig().isEnabled(SPConfig::InProcess))
return;
diff --git a/shibsp/handler/impl/DiscoveryFeed.cpp b/shibsp/handler/impl/DiscoveryFeed.cpp
index 59dbbbf..739d60d 100644
--- a/shibsp/handler/impl/DiscoveryFeed.cpp
+++ b/shibsp/handler/impl/DiscoveryFeed.cpp
@@ -107,7 +107,7 @@ namespace shibsp {
};
DiscoveryFeed::DiscoveryFeed(const DOMElement* e, const char* appId)
- : AbstractHandler(e, Category::getInstance(SHIBSP_LOGCAT ".DiscoveryFeed"), &g_Blocker), m_cacheToClient(false)
+ : AbstractHandler(e, Category::getInstance(SHIBSP_LOGCAT ".Handler.DiscoveryFeed"), &g_Blocker), m_cacheToClient(false)
{
pair<bool,const char*> prop = getString("Location");
if (!prop.first)
diff --git a/shibsp/handler/impl/ExternalAuthHandler.cpp b/shibsp/handler/impl/ExternalAuthHandler.cpp
index 7e639a5..39a5f3e 100644
--- a/shibsp/handler/impl/ExternalAuthHandler.cpp
+++ b/shibsp/handler/impl/ExternalAuthHandler.cpp
@@ -163,7 +163,7 @@ namespace {
};
ExternalAuth::ExternalAuth(const DOMElement* e, const char* appId)
- : SecuredHandler(e, Category::getInstance(SHIBSP_LOGCAT ".ExternalAuth"), "acl", "127.0.0.1 ::1")
+ : SecuredHandler(e, Category::getInstance(SHIBSP_LOGCAT ".Handler.ExternalAuth"), "acl", "127.0.0.1 ::1")
{
setAddress("run::ExternalAuth");
}
diff --git a/shibsp/handler/impl/MetadataGenerator.cpp b/shibsp/handler/impl/MetadataGenerator.cpp
index 29a7531..acb5a4f 100644
--- a/shibsp/handler/impl/MetadataGenerator.cpp
+++ b/shibsp/handler/impl/MetadataGenerator.cpp
@@ -186,7 +186,7 @@ namespace shibsp {
};
MetadataGenerator::MetadataGenerator(const DOMElement* e, const char* appId)
- : SecuredHandler(e, Category::getInstance(SHIBSP_LOGCAT ".MetadataGenerator"))
+ : SecuredHandler(e, Category::getInstance(SHIBSP_LOGCAT ".Handler.Metadata"))
#ifndef SHIBSP_LITE
,m_http(0), m_https(0), m_encryptionBuilder(nullptr), m_digestBuilder(nullptr)
#endif
diff --git a/shibsp/handler/impl/SessionHandler.cpp b/shibsp/handler/impl/SessionHandler.cpp
index ba8f71a..df42abb 100644
--- a/shibsp/handler/impl/SessionHandler.cpp
+++ b/shibsp/handler/impl/SessionHandler.cpp
@@ -74,7 +74,7 @@ namespace shibsp {
};
SessionHandler::SessionHandler(const DOMElement* e, const char* appId)
- : SecuredHandler(e, Category::getInstance(SHIBSP_LOGCAT ".SessionHandler")), m_values(false)
+ : SecuredHandler(e, Category::getInstance(SHIBSP_LOGCAT ".Handler.Session")), m_values(false)
{
pair<bool,const char*> prop = getString("contentType");
if (prop.first)
diff --git a/shibsp/handler/impl/StatusHandler.cpp b/shibsp/handler/impl/StatusHandler.cpp
index 2788519..bdb56c0 100644
--- a/shibsp/handler/impl/StatusHandler.cpp
+++ b/shibsp/handler/impl/StatusHandler.cpp
@@ -251,7 +251,7 @@ namespace shibsp {
};
StatusHandler::StatusHandler(const DOMElement* e, const char* appId)
- : SecuredHandler(e, Category::getInstance(SHIBSP_LOGCAT ".StatusHandler"))
+ : SecuredHandler(e, Category::getInstance(SHIBSP_LOGCAT ".Handler.Status"))
{
string address(appId);
address += getString("Location").second;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list