forked from 47-studio-org/PostSharp.Samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
42 lines (37 loc) · 1.04 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
using Gibraltar.Agent;
using PostSharp.Patterns.Diagnostics;
using PostSharp.Samples.Logging.BusinessLogic;
using System;
// Add logging to all methods of this project.
[assembly: Log]
namespace PostSharp.Samples.Logging.Loupe
{
internal class Program
{
private static void Main(string[] args)
{
try
{
// Initialize Loupe.
Log.StartSession();
// Configure PostSharp Logging to use Loupe.
LoggingServices.DefaultBackend = new LoupeLoggingBackend();
// Simulate some business logic.
QueueProcessor.ProcessQueue(@".\Private$\SyncRequestQueue");
Console.WriteLine("Press Enter to finish.");
Console.ReadLine();
}
catch (Exception ex)
{
//Optional but recommended - write fatal exceptions to loupe this way so the session is marked as crashed.
Log.RecordException(ex, "Program", false);
throw;
}
finally
{
// Close Loupe.
Log.EndSession();
}
}
}
}