We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c4ddf4 commit 305be57Copy full SHA for 305be57
DevProxy/Extensions/ILoggingBuilderExtensions.cs
@@ -30,10 +30,9 @@ public static ILoggingBuilder ConfigureDevProxyLogging(
30
.AddFilter("Microsoft.AspNetCore.*", LogLevel.Error)
31
.AddFilter("Microsoft.Extensions.*", LogLevel.Error)
32
.AddFilter("System.*", LogLevel.Error)
33
- // Only show plugin messages for the root command
+ // Only show plugin messages when no global options are set
34
.AddFilter("DevProxy.Plugins.*", level =>
35
level >= configuredLogLevel &&
36
- DevProxyCommand.IsRootCommand &&
37
!DevProxyCommand.HasGlobalOptions)
38
.AddConsole(options =>
39
{
0 commit comments