Skip to content

Commit 21050e0

Browse files
Merge branch 'main' into devtoolsplugin-streaming
2 parents 75c953e + b83451b commit 21050e0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

DevProxy.Plugins/Inspection/DevToolsPlugin.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ public override async Task AfterResponseAsync(ProxyResponseArgs e, CancellationT
186186
.GroupBy(h => h.Name)
187187
.ToDictionary(g => g.Key, g => string.Join(", ", g.Select(h => h.Value))),
188188
MimeType = e.Session.HttpClient.Response.ContentType
189-
}
189+
},
190+
HasExtraInfo = true
190191
}
191192
};
192193

DevProxy/Commands/DevProxyCommand.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ private void ConfigureCommand()
179179
var logLevelOption = new Option<LogLevel?>(LogLevelOptionName)
180180
{
181181
Description = $"Level of messages to log. Allowed values: {string.Join(", ", Enum.GetNames<LogLevel>())}",
182-
HelpName = "log-level"
182+
HelpName = "log-level",
183+
Recursive = true
183184
};
184185
logLevelOption.Validators.Add(input =>
185186
{

0 commit comments

Comments
 (0)