You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by mj...@apache.org on 2017/10/27 17:51:48 UTC

[10/25] incubator-guacamole-client git commit: GUACAMOLE-362: Change warn to debug for missing private key.

GUACAMOLE-362: Change warn to debug for missing private key.


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/a196134f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/a196134f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/a196134f

Branch: refs/heads/master
Commit: a196134f2dd266fc3b8fac7b781eef05b016a209
Parents: 17599d9
Author: Nick Couchman <vn...@apache.org>
Authored: Sun Oct 1 15:39:32 2017 -0400
Committer: Nick Couchman <ni...@yahoo.com>
Committed: Fri Oct 27 13:05:13 2017 -0400

----------------------------------------------------------------------
 .../apache/guacamole/auth/cas/ticket/TicketValidationService.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/a196134f/extensions/guacamole-auth-cas/src/main/java/org/apache/guacamole/auth/cas/ticket/TicketValidationService.java
----------------------------------------------------------------------
diff --git a/extensions/guacamole-auth-cas/src/main/java/org/apache/guacamole/auth/cas/ticket/TicketValidationService.java b/extensions/guacamole-auth-cas/src/main/java/org/apache/guacamole/auth/cas/ticket/TicketValidationService.java
index 515deed..f64481d 100644
--- a/extensions/guacamole-auth-cas/src/main/java/org/apache/guacamole/auth/cas/ticket/TicketValidationService.java
+++ b/extensions/guacamole-auth-cas/src/main/java/org/apache/guacamole/auth/cas/ticket/TicketValidationService.java
@@ -140,7 +140,7 @@ public class TicketValidationService {
 
         final PrivateKey clearpassKey = confService.getClearpassKey();
         if (clearpassKey == null) {
-            logger.warn("No private key available to decrypt password.");
+            logger.debug("No private key available to decrypt password.");
             return null;
         }