-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding verbose flag #30
Conversation
@j-vizcaino @octplane seems ok for you? |
Codecov Report
@@ Coverage Diff @@
## master #30 +/- ##
=========================================
Coverage ? 92.51%
=========================================
Files ? 7
Lines ? 227
Branches ? 0
=========================================
Hits ? 210
Misses ? 9
Partials ? 8
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for patching this!
Regarding option, should the tool want to stick with existing conventions, this should either be:
- keep
debug
and useverbose
- have a single option to set the loglevel:
l/loglevel <lvl>
(and merge the debug option to use this)
app/generator/generator.go
Outdated
@@ -42,6 +42,7 @@ type ( | |||
func NewOrbitGenerator(context *context.OrbitContext) *OrbitGenerator { | |||
funcMap := sprig.TxtFuncMap() | |||
funcMap["os"] = getOS | |||
funcMap["info"] = isInfo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel this would be more conventional to name this verbose
instead of info
🤔
Running orbit run --verbose
would feel a bit more explicit than orbit run --info
app/root.go
Outdated
@@ -35,5 +43,6 @@ var ( | |||
func init() { | |||
RootCmd.PersistentFlags().StringVarP(&templateFilePath, "file", "f", "", "specify the path of a data-driven template") | |||
RootCmd.PersistentFlags().StringVarP(&payload, "payload", "p", "", "specify a map of YAML files, TOML files, JSON files, .env files and raw data") | |||
RootCmd.PersistentFlags().BoolVarP(&debug, "debug", "d", false, "display a detailed output") | |||
RootCmd.PersistentFlags().BoolVarP(&info, "info", "i", false, "set logging to info level") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, maybe v/verbose
instead of i/info
?
Usually, i
is used for input
, that may be confusing to users.
Thank you for the feedback :) I didn't know that |
Adds
-v--verbose
flag which displays less logs than the-d --debug
flag.Example when running a task:
Feature request from #29