-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathProgram.cs
96 lines (75 loc) · 3.2 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
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
88
89
90
91
92
93
94
95
96
using System;
using System.Globalization;
using System.IO;
using System.Reflection;
using System.Runtime;
using System.Runtime.Loader;
using System.Threading;
using Serilog;
using Serilog.Events;
using Serilog.Extensions.Logging;
namespace Crypto.Websocket.Extensions.Sample
{
class Program
{
public static SerilogLoggerFactory Logger;
private static readonly ManualResetEvent ExitEvent = new ManualResetEvent(false);
static void Main(string[] args)
{
var defaultCulture = CultureInfo.InvariantCulture;
CultureInfo.DefaultThreadCurrentCulture = defaultCulture;
CultureInfo.DefaultThreadCurrentUICulture = defaultCulture;
GCSettings.LatencyMode = GCLatencyMode.SustainedLowLatency;
Logger = InitLogging();
AppDomain.CurrentDomain.ProcessExit += CurrentDomainOnProcessExit;
AssemblyLoadContext.Default.Unloading += DefaultOnUnloading;
Console.CancelKeyPress += ConsoleOnCancelKeyPress;
Console.WriteLine("|========================|");
Console.WriteLine("| WEBSOCKET EXTENSIONS |");
Console.WriteLine("|========================|");
Console.WriteLine();
Log.Debug("====================================");
Log.Debug(" STARTING ");
Log.Debug("====================================");
OrderBookExample.RunEverything().Wait();
//OrderBookExample.RunOnlyOne(true).Wait();
//OrderBookL3Example.RunOnlyOne().Wait();
//TradesExample.RunEverything().Wait();
//OrdersExample.RunEverything().Wait();
ExitEvent.WaitOne();
Log.Debug("====================================");
Log.Debug(" STOPPING ");
Log.Debug("====================================");
Log.CloseAndFlush();
}
private static SerilogLoggerFactory InitLogging()
{
var executingDir = Path.GetDirectoryName(Assembly.GetEntryAssembly()?.Location);
var logPath = Path.Combine(executingDir, "logs", "verbose.log");
var logger = new LoggerConfiguration()
.MinimumLevel.Verbose()
.WriteTo.File(logPath, rollingInterval: RollingInterval.Day)
.WriteTo.Console(LogEventLevel.Debug,
outputTemplate: "{Timestamp:HH:mm:ss.ffffff} [{Level:u3}] {Message}{NewLine}")
.CreateLogger();
Log.Logger = logger;
return new SerilogLoggerFactory(logger);
}
private static void CurrentDomainOnProcessExit(object sender, EventArgs eventArgs)
{
Log.Warning("Exiting process");
ExitEvent.Set();
}
private static void DefaultOnUnloading(AssemblyLoadContext assemblyLoadContext)
{
Log.Warning("Unloading process");
ExitEvent.Set();
}
private static void ConsoleOnCancelKeyPress(object sender, ConsoleCancelEventArgs e)
{
Log.Warning("Canceling process");
e.Cancel = true;
ExitEvent.Set();
}
}
}