Skip to content

Commit 0998959

Browse files
author
Bart Koelman
committed
Tweak logging output in cibuild
1 parent aa70f4e commit 0998959

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

src/Examples/GettingStarted/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"Logging": {
33
"LogLevel": {
44
"Default": "Warning",
5-
"Microsoft": "Warning",
5+
"Microsoft.Hosting.Lifetime": "Information",
66
"Microsoft.EntityFrameworkCore.Database.Command": "Information"
77
}
88
},

src/Examples/JsonApiDotNetCoreExample/appsettings.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
"Logging": {
66
"LogLevel": {
77
"Default": "Warning",
8-
"Microsoft": "Warning",
9-
"Microsoft.EntityFrameworkCore.Database.Command": "Warning"
8+
"Microsoft.Hosting.Lifetime": "Warning",
9+
"Microsoft.EntityFrameworkCore.Update": "Critical",
10+
"Microsoft.EntityFrameworkCore.Database.Command": "Critical"
1011
}
1112
},
1213
"AllowedHosts": "*"

src/Examples/MultiDbContextExample/appsettings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"Logging": {
33
"LogLevel": {
4-
"Default": "Information",
5-
"Microsoft": "Warning",
6-
"Microsoft.Hosting.Lifetime": "Information"
4+
"Default": "Warning",
5+
"Microsoft.Hosting.Lifetime": "Warning",
6+
"Microsoft.EntityFrameworkCore.Database.Command": "Critical"
77
}
88
},
99
"AllowedHosts": "*"

src/Examples/NoEntityFrameworkExample/appsettings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"Logging": {
66
"LogLevel": {
77
"Default": "Warning",
8-
"Microsoft": "Warning",
9-
"Microsoft.EntityFrameworkCore.Database.Command": "Information"
8+
"Microsoft.Hosting.Lifetime": "Warning",
9+
"Microsoft.EntityFrameworkCore.Database.Command": "Critical"
1010
}
1111
},
1212
"AllowedHosts": "*"

src/Examples/ReportsExample/appsettings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"Logging": {
33
"LogLevel": {
44
"Default": "Warning",
5-
"Microsoft": "Warning"
5+
"Microsoft.Hosting.Lifetime": "Information",
6+
"Microsoft.EntityFrameworkCore.Database.Command": "Information"
67
}
78
},
89
"AllowedHosts": "*"

0 commit comments

Comments
 (0)