diff --git a/HavokMultimedia.Utilities.Console/External/FtpClient.cs b/HavokMultimedia.Utilities.Console/External/FtpClient.cs index 3117d21..60d6abe 100644 --- a/HavokMultimedia.Utilities.Console/External/FtpClient.cs +++ b/HavokMultimedia.Utilities.Console/External/FtpClient.cs @@ -384,7 +384,7 @@ public FtpClientFtp(string host, ushort port, string username, string password) if (username == null) username = password = "anonymous"; _client = new FtpClient(host, port, new System.Net.NetworkCredential(username, password)); log.Debug("Connecting to FTP server " + host + ":" + port + " with username " + username); - FtpTrace.LogPassword = true; + //FtpTrace.LogPassword = true; //FtpTrace.LogPrefix = true; _client.OnLogEvent = LogMessage; _client.Connect(); @@ -406,7 +406,7 @@ public FtpClientFtp(string host, ushort port, string username, string password, _client.SslProtocols = sslProtocols; log.Debug("Connecting to FTPS server " + host + ":" + port + " with username " + username); - FtpTrace.LogPassword = true; + //FtpTrace.LogPassword = true; //FtpTrace.LogPrefix = true; _client.OnLogEvent = LogMessage; _client.Connect();