Skip to content

Commit a0c3ea0

Browse files
authored
Show dashboard errors by default. (dotnet#4654)
1 parent 2022c81 commit a0c3ea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Aspire.Hosting/DistributedApplicationBuilder.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public DistributedApplicationBuilder(DistributedApplicationOptions options)
117117

118118
_innerBuilder.Logging.AddFilter("Microsoft.Hosting.Lifetime", LogLevel.Warning);
119119
_innerBuilder.Logging.AddFilter("Microsoft.AspNetCore.Server.Kestrel", LogLevel.Error);
120-
_innerBuilder.Logging.AddFilter("Aspire.Hosting.Dashboard", LogLevel.None);
120+
_innerBuilder.Logging.AddFilter("Aspire.Hosting.Dashboard", LogLevel.Error);
121121

122122
// This is so that we can see certificate errors in the resource server in the console logs.
123123
// See: https://github.com/dotnet/aspire/issues/2914

0 commit comments

Comments
 (0)