Have two issues with this message.
Info: using a local vm with openstack's devstack; icehouse version. Using 1.8.0 of jclouds.
- I am trying to configure the logger with jclouds and keep getting an error message print out to the console. But I keep getting this error to surface in my main program. I originally was using the NullLogger but found that errors still get printed. Created my own NullLogger that would not print errors, and am still getting this issue (just overrode the error functions)
- Another problem is that this message just spits out the credentials used to try to connect. I would like to at least catch this message before it got printed and just mention that it couldn't connect to the server.
Any ideas to fix either of these would be greatly appreciated!! Thanks.
Specfic error>>>>>>>
2015-02-10 10:56:36.707 ERROR [Thread-5] o.j.h.h.BackoffLimitedRetryHandler Cannot retry after server error, command has exceeded retry limit 5: [method=org.jclouds.openstack.keystone.v2_0.AuthenticationApi.public abstract org.jclouds.openstack.keystone.v2_0.domain.Access org.jclouds.openstack.keystone.v2_0.AuthenticationApi.authenticateWithTenantNameAndCredentials(java.lang.String,org.jclouds.openstack.keystone.v2_0.domain.PasswordCredentials)[admin, PasswordCredentials{username=admin, password=openstack}], request=POST http://xxxxxx:5000/v2.0/tokens HTTP/1.1]
logback.xml>>>>>>
<?xml version="1.0"?>
<configuration>
<appender name="FILE" class="ch.qos.logback.core.FileAppender">
<file>jclouds.log</file>
<encoder>
<pattern>%date{yyyy-MM-dd HH:mm:ss.SSS} %level [%thread] %logger{10} %msg%n</pattern>
</encoder>
</appender>
<root>
<level value="DEBUG" />
<appender-ref ref="FILE" />
</root>
</configuration>