Lower logging.
authorScott Cantor <cantor.2@osu.edu>
Thu, 15 Feb 2007 04:07:07 +0000 (04:07 +0000)
committerScott Cantor <cantor.2@osu.edu>
Thu, 15 Feb 2007 04:07:07 +0000 (04:07 +0000)
saml/binding/impl/MessageFlowRule.cpp

index 1c61ba2..b18f472 100644 (file)
@@ -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();