Skip to content
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

Merged
merged 5 commits into from
Apr 30, 2018
Merged

adding verbose flag #30

merged 5 commits into from
Apr 30, 2018

Conversation

gulien
Copy link
Owner

@gulien gulien commented Apr 29, 2018

Adds -v--verbose flag which displays less logs than the -d --debug flag.

Example when running a task:

INFO[0000] running task fmt: Runs go fmt ./...
INFO[0000] executing command [/bin/zsh -c go fmt ./...]

Feature request from #29

@gulien gulien added this to the v3.1.0 milestone Apr 29, 2018
@gulien
Copy link
Owner Author

gulien commented Apr 29, 2018

@j-vizcaino @octplane seems ok for you?

@codecov
Copy link

codecov bot commented Apr 29, 2018

Codecov Report

❗ No coverage uploaded for pull request base (master@aa00579). Click here to learn what that means.
The diff coverage is 75%.

Impacted file tree graph

@@            Coverage Diff            @@
##             master      #30   +/-   ##
=========================================
  Coverage          ?   92.51%           
=========================================
  Files             ?        7           
  Lines             ?      227           
  Branches          ?        0           
=========================================
  Hits              ?      210           
  Misses            ?        9           
  Partials          ?        8
Impacted Files Coverage Δ
app/runner/runner.go 94.91% <100%> (ø)
app/generator/generator.go 90% <100%> (ø)
app/generator/funcmap.go 66.66% <33.33%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update aa00579...2cedf5f. Read the comment docs.

@gulien gulien mentioned this pull request Apr 29, 2018
4 tasks
Copy link
Contributor

@j-vizcaino j-vizcaino left a 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 use verbose
  • have a single option to set the loglevel: l/loglevel <lvl> (and merge the debug option to use this)

@@ -42,6 +42,7 @@ type (
func NewOrbitGenerator(context *context.OrbitContext) *OrbitGenerator {
funcMap := sprig.TxtFuncMap()
funcMap["os"] = getOS
funcMap["info"] = isInfo
Copy link
Contributor

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")
Copy link
Contributor

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.

@gulien
Copy link
Owner Author

gulien commented Apr 30, 2018

Thank you for the feedback :)

I didn't know that verbose is some kind of a convention. For me, verbose = debug.
However, I think it's better than having a single option to set the logs level, as I don't use a lot of them (in fact, only INFO, DEBUG and ERROR - the last one being particular also, as I don't show all error logs unless we are in debug mode).

@gulien gulien changed the title adding info flag adding verbose flag Apr 30, 2018
@gulien gulien merged commit e8ee541 into master Apr 30, 2018
@gulien gulien deleted the info-flag branch May 1, 2018 11:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants