Skip to content
Snippets Groups Projects
Commit 423d0156 authored by Martin Vogel's avatar Martin Vogel
Browse files

#414 Adjust log messages

parent 118e750e
No related branches found
No related tags found
2 merge requests!2#414 Remaining changes from MR,!1planning#414 Methoden Signaturen (Zwischenstand)
......@@ -23,11 +23,11 @@ public class ProxyConfig {
public RestTemplate proxyRestTemplate() {
if (!hasProxySet()) {
logger.info("no proxy configured");
logger.info("No proxy configured");
return new RestTemplate();
}
logger.info("using proxy {}", this);
logger.info("Using proxy {}", this);
var requestFactory = new SimpleClientHttpRequestFactory();
var proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(host, port));
requestFactory.setProxy(proxy);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment