Reduce error logging from trust engine.
authorcantor <cantor@de75baf8-a10c-0410-a50a-987c0e22f00f>
Fri, 20 Jul 2007 19:39:16 +0000 (19:39 +0000)
committercantor <cantor@de75baf8-a10c-0410-a50a-987c0e22f00f>
Fri, 20 Jul 2007 19:39:16 +0000 (19:39 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-xmltooling/trunk@356 de75baf8-a10c-0410-a50a-987c0e22f00f

xmltooling/security/impl/ExplicitKeyTrustEngine.cpp

index 4630f31..8b571d8 100644 (file)
@@ -105,7 +105,7 @@ bool ExplicitKeyTrustEngine::validate(
         credResolver.resolve(credentials,&cc);
     }
     if (credentials.empty()) {
-        log.warn("unable to validate signature, no credentials available from peer");
+        log.debug("unable to validate signature, no credentials available from peer");
         return false;
     }
     
@@ -123,7 +123,7 @@ bool ExplicitKeyTrustEngine::validate(
         }
     }
 
-    log.error("no peer credentials validated the signature");
+    log.debug("no peer credentials validated the signature");
     return false;
 }
 
@@ -157,7 +157,7 @@ bool ExplicitKeyTrustEngine::validate(
         credResolver.resolve(credentials,&cc);
     }
     if (credentials.empty()) {
-        log.warn("unable to validate signature, no credentials available from peer");
+        log.debug("unable to validate signature, no credentials available from peer");
         return false;
     }
     
@@ -178,7 +178,7 @@ bool ExplicitKeyTrustEngine::validate(
         }
     }
 
-    log.error("no peer credentials validated the signature");
+    log.debug("no peer credentials validated the signature");
     return false;
 }
 
@@ -233,7 +233,7 @@ bool ExplicitKeyTrustEngine::validate(
         credResolver.resolve(credentials,&cc);
     }
     if (credentials.empty()) {
-        log.warn("unable to validate certificate, no credentials available from peer");
+        log.debug("unable to validate certificate, no credentials available from peer");
         return false;
     }