Skip to content

Commit e96f62d

Browse files
committed
Add log message on use of proxy
Signed-off-by: Mitch Gaffigan <mitch.gaffigan@comcast.net>
1 parent 245265c commit e96f62d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

server/src/com/mirth/connect/client/core/ServerConnection.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ public ServerConnection(int timeout, String[] httpsProtocols, String[] httpsCiph
145145
if (allowHTTP && StringUtils.isNotBlank(httpProxyHost)) {
146146
String httpProxyPort = System.getProperty("mirthApi.http.proxyPort");
147147
int proxyPort = StringUtils.isNotBlank(httpProxyPort) ? Integer.parseInt(httpProxyPort) : 8888;
148+
logger.info("Using API HTTP Proxy {}:{}", httpProxyHost, proxyPort);
148149
requestConfigBuilder.setProxy(new HttpHost(httpProxyHost, proxyPort));
149150
}
150151

0 commit comments

Comments
 (0)