Skip to content

Commit

Permalink
option rename
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel committed Feb 13, 2022
1 parent 6af4d74 commit 85e8f32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FsAutoComplete/Options.fs
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ module Options =
let inline private multipleArgs (x: #Option) = x.AllowMultipleArgumentsPerToken <- true; x

let verboseOption =
Option<bool>([|"--verbose"; "-v"; "--debug"|], "Enable verbose logging. This is equivalent to --log debug.")
Option<bool>([|"--verbose"; "-v"; "--debug"|], "Enable verbose logging. This is equivalent to --log-level debug.")
|> setArity ArgumentArity.Zero

let logLevelOption = Option<LogEventLevel>("--log", "Set the log verbosity to a specific level.")
let logLevelOption = Option<LogEventLevel>("--log-level", "Set the log verbosity to a specific level.")

let attachOption =
Option<bool>("--attach-debugger", "Launch the system debugger and break immediately")
Expand Down

0 comments on commit 85e8f32

Please sign in to comment.