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.
2 parents 2a3d548 + 305be57 commit f927f4cCopy full SHA for f927f4c
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