Author: adc
Date: Tue Apr 12 14:40:21 2005
New Revision: 161125

URL: http://svn.apache.org/viewcvs?view=rev&rev=161125
Log:
Shouldn't log passwords.

Modified:
    
geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/SecurityServiceImpl.java

Modified: 
geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/SecurityServiceImpl.java
URL: 
http://svn.apache.org/viewcvs/geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/SecurityServiceImpl.java?view=diff&r1=161124&r2=161125
==============================================================================
--- 
geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/SecurityServiceImpl.java
 (original)
+++ 
geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/SecurityServiceImpl.java
 Tue Apr 12 14:40:21 2005
@@ -84,10 +84,8 @@
         if (trustStore != null) 
sysOverRide(serverInfo.resolvePath(trustStore), TRUSTSTORE);
         if (trustStorePassword != null) sysOverRide(trustStorePassword, 
TRUSTSTORE_PASSWORD);
 
-        log.info(KEYSTORE + ": " + System.getProperty(KEYSTORE));
-        log.info(KEYSTORE_PASSWORD + ": " + 
System.getProperty(KEYSTORE_PASSWORD));
-        log.info(TRUSTSTORE + ": " + System.getProperty(TRUSTSTORE));
-        log.info(TRUSTSTORE_PASSWORD + ": " + 
System.getProperty(TRUSTSTORE_PASSWORD));
+        log.debug(KEYSTORE + ": " + System.getProperty(KEYSTORE));
+        log.debug(TRUSTSTORE + ": " + System.getProperty(TRUSTSTORE));
 
         log.info("JACC factory registered");
     }


Reply via email to