Skip to content

Commit 44e27ba

Browse files
Makes the --log-level option globally available (#1302)
1 parent aeaed2e commit 44e27ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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)