Skip to content

Commit

Permalink
feat: #195 set -vv description in cli and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nroulon committed Jun 13, 2023
1 parent 865f4b6 commit a39846a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/cli-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
|--trust-uri|false||N/A|Deactivate all controls on the URI you provide Datamaintain||
|--mongo-tmp-path|/tmp/datamaintain.tmp||TEXT|mongo tmp file path||
|--verbose, -v|false||N/A|verbose||
|-vv|false||N/A|trace is more verbose than verbose||
|-vv|false||N/A|verbose with more details||
|--config|No default value||N/A|Print the configuration without executing the subcommand||
|-h, --help|No default value||N/A|Display command help and exit||
# Subcommands
Expand Down
2 changes: 1 addition & 1 deletion modules/cli/src/main/kotlin/datamaintain/cli/app/App.kt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class App : CliktCommand() {
).flag()

private val trace: Boolean? by detailedOption("-vv",
help = "trace is more verbose than verbose",
help = "verbose with more details",
defaultValue = CliSpecificKey.VERBOSE.default
).flag()

Expand Down

0 comments on commit a39846a

Please sign in to comment.