-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
87 lines (87 loc) · 1.79 KB
/
appsettings.json
File metadata and controls
87 lines (87 loc) · 1.79 KB
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
{
"BotConfig": {
"BotQQId": 256626981,
"AuditGroupId": 1059163188,
"MainGroupIds": [
1054206574
],
"AuditorQQIds": [
3519296893,
2795594870,
3066088937,
2691975064,
3113661755,
2728782862,
3293604374,
3071211447,
1974099723,
3481933309,
1152714411,
3288113758,
2629707299,
2071170873,
2297848349,
954158090,
2296371735,
976502461,
1845639559,
971440707,
3416281820,
2710458198,
2130930644,
2505541985
],
"AdminQqIds": [
2710458198,
3519296893,
1152714411,
3416281820,
2728782862,
3071211447,
3066088937,
2130930644,
3481933309
],
"DataFile": "data.json"
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
},
"Enrich": [ "FromLogContext" ],
"WriteTo": [
{
"Name": "Console",
"Args": {
"outputTemplate": "[{Timestamp:HH:mm:ss} {Level:u3}] {Message:lj}{NewLine}{Exception}"
}
},
{
"Name": "File",
"Args": {
"path": "logs/log_.log",
"outputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff} {Level:u3}] {Message:lj}{NewLine}{Exception}",
"rollingInterval": "Day",
"retainedFileCountLimit": 10,
"fileSizeLimitBytes": 10485760,
"buffered": false,
"shared": true,
"flushToDiskInterval": "00:00:05"
}
}
]
},
"Bot": {
"ForwardWebSocket": {
"Enabled": true,
"Url": "ws://192.168.10.61:5489",
"AccessToken": "",
"ReconnectInterval": 1000,
"ConnectionTimeout": 5000
}
}
}