diff --git a/symmetric/src/main/java/org/jumpmind/symmetric/transport/http/HttpTransportManager.java b/symmetric/src/main/java/org/jumpmind/symmetric/transport/http/HttpTransportManager.java index b42164ba4a..f41a424801 100644 --- a/symmetric/src/main/java/org/jumpmind/symmetric/transport/http/HttpTransportManager.java +++ b/symmetric/src/main/java/org/jumpmind/symmetric/transport/http/HttpTransportManager.java @@ -156,7 +156,7 @@ protected String buildURL(String action, Node remote, Node local) throws IOExcep private String chooseURL(Node remote) { if (StringUtils.isBlank(remote.getSyncURL())) { logger - .info("Using the registration URL to contact the remote node because the syncURL for the node is blank."); + .debug("Using the registration URL to contact the remote node because the syncURL for the node is blank."); return runtimeConfiguration.getRegistrationUrl(); } else { return remote.getSyncURL();