Skip to content
Snippets Groups Projects
Commit 8196921c authored by kaloyane's avatar kaloyane
Browse files

minor: add active port configuration to log

SVN: 21479
parent e6b08bcb
No related branches found
No related tags found
No related merge requests found
...@@ -208,6 +208,11 @@ public class FtpServerConfig ...@@ -208,6 +208,11 @@ public class FtpServerConfig
operationLog.info("Ftp Server port: " + port); operationLog.info("Ftp Server port: " + port);
operationLog.info("Ftp Server using SSL: " + useSSL); operationLog.info("Ftp Server using SSL: " + useSSL);
operationLog.info("Ftp Server data set display template : " + dataSetDisplayTemplate); operationLog.info("Ftp Server data set display template : " + dataSetDisplayTemplate);
operationLog.info("Ftp Server enable active mode: " + activeModeEnabled);
if (activeModeEnabled)
{
operationLog.info("Ftp Server active mode port: " + activePort);
}
for (Entry<String, String> subpathEntry : fileListSubPaths.entrySet()) for (Entry<String, String> subpathEntry : fileListSubPaths.entrySet())
{ {
......
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