From 6080e9253307b831a8d0a01a166b2394c5961d5e Mon Sep 17 00:00:00 2001 From: Scott Cantor Date: Thu, 15 Feb 2007 04:07:07 +0000 Subject: [PATCH] Lower logging. --- saml/binding/impl/MessageFlowRule.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/saml/binding/impl/MessageFlowRule.cpp b/saml/binding/impl/MessageFlowRule.cpp index 1c61ba2..b18f472 100644 --- a/saml/binding/impl/MessageFlowRule.cpp +++ b/saml/binding/impl/MessageFlowRule.cpp @@ -65,7 +65,7 @@ void MessageFlowRule::evaluate(const XMLObject& message, const GenericRequest* r time_t skew = XMLToolingConfig::getConfig().clock_skew_secs; time_t issueInstant = policy.getIssueInstant(); if (issueInstant == 0) { - log.info("unknown message timestamp, assuming current time for replay checking"); + log.debug("unknown message timestamp, assuming current time for replay checking"); issueInstant = now; } else { @@ -85,7 +85,7 @@ void MessageFlowRule::evaluate(const XMLObject& message, const GenericRequest* r if (m_checkReplay) { const XMLCh* id = policy.getMessageID(); if (!id || !*id) { - log.info("unknown message ID, no replay check possible"); + log.debug("unknown message ID, no replay check possible"); return; } ReplayCache* replayCache = XMLToolingConfig::getConfig().getReplayCache(); -- 2.1.4