You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ad...@apache.org on 2005/04/12 23:40:22 UTC

svn commit: r161125 - geronimo/trunk/modules/security/src/java/org/apache/geronimo/security/SecurityServiceImpl.java

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");
     }