forked from atomex-me/atomex.client.desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
41 lines (41 loc) · 997 Bytes
/
config.json
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
{
"Serilog": {
"Using": [ "Serilog.Sinks.Console", "Atomex.Client.Core" ],
"MinimumLevel": {
"Default": "Debug",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
},
"WriteTo": [
{ "Name": "Console" },
{
"Name": "RollingFile",
"Args": {
"pathFormat": "logs/log-{Date}.txt",
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff K} [{Level:u3}] [{Class}] {Message:lj} (at {Caller}){NewLine}{Exception}"
}
}
],
"Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId", "WithCaller" ]
},
"Services": {
"MainNet": {
"Exchange": {
"Url": "wss://atomex.me/exchange"
},
"MarketData": {
"Url": "wss://atomex.me/marketdata"
}
},
"TestNet": {
"Exchange": {
"Url": "wss://test.atomex.me/exchange"
},
"MarketData": {
"Url": "wss://test.atomex.me/marketdata"
}
}
}
}