forked from robinrodricks/FluentFTP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Debug.cs
87 lines (79 loc) · 3.16 KB
/
Debug.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
using System;
using System.Diagnostics;
using FluentFTP;
namespace Examples {
/// <summary>
/// Example for logging server transactions for use in debugging problems.
/// </summary>
public static class DebugExample {
/// <summary>
/// Log to a console window
/// </summary>
static void LogToConsole() {
FtpTrace.AddListener(new ConsoleTraceListener());
// now use System.Net.FtpCLient as usual and the server transactions
// will be written to the Console window.
}
/// <summary>
/// Log to a text file
/// </summary>
static void LogToFile() {
FtpTrace.AddListener(new TextWriterTraceListener("log_file.txt"));
// now use System.Net.FtpCLient as usual and the server transactions
// will be written to the specified log file.
}
/// <summary>
/// Custom trace listener class that can log the transaction
/// however you want.
/// </summary>
class CustomTraceListener : TraceListener {
public override void Write(string message) {
Console.Write(message);
}
public override void WriteLine(string message) {
Console.WriteLine(message);
}
}
/// <summary>
/// Log to a custom TraceListener
/// </summary>
static void LogToCustomListener() {
FtpTrace.AddListener(new CustomTraceListener());
}
//Listeners can also be attached via app.config, web.config, or machine.config files
/*
* <system.diagnostics>
* <trace autoflush="true"></trace>
* <sources>
* <source name="FluentFTP">
* <listeners>
* <clear />
* <!--Attach NLog Trace Listener -->
* <add name="nlog" />
* <!-- Attach a Console Listener -->
* <add name="console />
* <!-- Attach a File Trace Listener -->
* <add name="file" />
* <!-- Attach a Custom Listener -->
* <add name="myLogger" />
* </listeners>
* </source>
* </sources>
* <sharedListeners>
* <!--Define Console Listener -->
* <add name="console" type="System.Diagnostics.ConsoleTraceListener" />
* <!--Define File Listener -->
* <add name="file" type="System.Diagnostics.TextWriterTraceListener
* initializeData="outputFile.log">
* <!--Only write errors -->
* <filter type="System.Diagnostics.EventTypeFilter" initializeData="Error" />
* </add>
* <!--Define Custom Listener -->
* <add name="custom" type="MyNamespace.MyCustomTraceListener />
* <!-- Define NLog Logger -->
* <add name="nlog" type="NLog.NLogTraceListener, NLog" />
* </sharedListeners>
* </system.diagnostics>
*/
}
}