forked from 47-studio-org/PostSharp.Samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
29 lines (24 loc) · 874 Bytes
/
Program.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
using log4net.Config;
using PostSharp.Patterns.Diagnostics;
using PostSharp.Patterns.Diagnostics.Backends.Log4Net;
using PostSharp.Samples.Logging.BusinessLogic;
using System.IO;
// Add logging to all methods of this project.
[assembly: Log]
namespace PostSharp.Samples.Logging.Log4Net
{
[Log(AttributeExclude = true)] // Removes logging from the Program class itself.
internal class Program
{
private static void Main(string[] args)
{
// Configure Log4Net
XmlConfigurator.Configure(new FileInfo("log4net.config"));
// Configure PostSharp Logging to use Log4Net
var log4NetLoggingBackend = new Log4NetLoggingBackend();
LoggingServices.DefaultBackend = log4NetLoggingBackend;
// Simulate some business logic.
QueueProcessor.ProcessQueue(@".\Private$\SyncRequestQueue");
}
}
}