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

This commit is contained in:
Nick Couchman
2017-10-01 15:39:32 -04:00
committed by Nick Couchman
parent 17599d9153
commit a196134f2d

View File

@@ -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;
}