Reference: https://github.com/cloudfoundry/java-buildpack-auto-reconfiguration/blob/master/auto-reconfiguration/src/main/java/org/cloudfoundry/reconfiguration/spring/AbstractCloudServiceBeanFactoryPostProcessor.java#L124
Cloud Foundry CUPS usually have user id/password specified as part of their definition and org.apache.tomcat.jdbc.pool.PoolPropertiestoString implementation doesn't know anything about it and logs it.
The quick fix would be to turn down the logging level in AbstractCloudServiceBeanFactoryPostProcessor to DEBUG so that it it would only log that if you are really want something at the DEBUG level.
Reference:
https://github.com/cloudfoundry/java-buildpack-auto-reconfiguration/blob/master/auto-reconfiguration/src/main/java/org/cloudfoundry/reconfiguration/spring/AbstractCloudServiceBeanFactoryPostProcessor.java#L124
Cloud FoundryCUPS
usually have user id/password specified as part of their definition andorg.apache.tomcat.jdbc.pool.PoolProperties
toString
implementation doesn't know anything about it and logs it. The quick fix would be to turn down the logging level inAbstractCloudServiceBeanFactoryPostProcessor
toDEBUG
so that it it would only log that if you are really want something at the DEBUG level.