Change log level. Fixes gh-552.
This commit is contained in:
@@ -373,8 +373,8 @@ public class FeignClientFactoryBean implements FactoryBean<Object>, Initializing
|
||||
Feign.Builder builder = feign(context);
|
||||
|
||||
if (!StringUtils.hasText(url)) {
|
||||
if (url != null && LOG.isWarnEnabled()) {
|
||||
LOG.warn(
|
||||
if (url != null && LOG.isInfoEnabled()) {
|
||||
LOG.info(
|
||||
"The provided URL is empty. Will try picking an instance via load-balancing.");
|
||||
}
|
||||
else if (LOG.isDebugEnabled()) {
|
||||
|
||||
Reference in New Issue
Block a user