-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathappsettings.IntegrationTests.json
More file actions
43 lines (43 loc) · 1.3 KB
/
Copy pathappsettings.IntegrationTests.json
File metadata and controls
43 lines (43 loc) · 1.3 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
{
"ConnectionStrings": {
"TodoForIntegrationTests": "<DO_NOT_STORE_SENSITIVE_DATA_HERE>"
},
"GenerateJwt": {
"Issuer": "https://integrationtests.auth.todo-by-satrapu.com",
"Audience": "https://integrationtests.api.todo-by-satrapu.com"
},
"Serilog": {
"LevelSwitches": {
"$controlSwitch": "Debug"
},
"Using": [
"Serilog.Sinks.Console",
"Serilog.Sinks.File"
],
"WriteTo": [
{
"Name": "Console",
"Args": {
"theme": "Serilog.Sinks.SystemConsole.Themes.AnsiConsoleTheme::Code, Serilog.Sinks.Console",
"outputTemplate": "{Timestamp:HH:mm:ss.fff} {Level:u3} | cid:{ConversationId} fid:{ApplicationFlowName} tid:{ThreadId} | {SourceContext}{NewLine}{Message:lj}{NewLine}{Exception}"
}
},
{
"Name": "File",
"Args": {
"path": "%LOGS_HOME%/todo-web-api.integration-tests.log",
"outputTemplate": "{Timestamp:HH:mm:ss.fff} {Level:u3} | cid:{ConversationId} fid:{ApplicationFlowName} tid:{ThreadId} | {SourceContext}{NewLine}{Message:lj}{NewLine}{Properties}{NewLine}{Exception}"
}
}
],
"Properties": {
"Application": "Todo.WebApi.IntegrationTests"
}
},
"ExceptionHandling": {
"IncludeDetails": true
},
"HttpLogging": {
"Enabled": true
}
}