Skip to content

Commit

Permalink
Update formatting for config validation
Browse files Browse the repository at this point in the history
Reintroduces the output style introduced in #861 to resolve #860, but
reverted in #884
  • Loading branch information
wyardley committed Mar 30, 2023
1 parent 2496ddb commit 4aa74cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

func printValues(values Values) {
for key, value := range values {
fmt.Printf("\t%s:\t%s", key, value)
fmt.Fprintf(os.Stderr, "%-18s %s\n", key+":", value)
}
}

Expand Down

0 comments on commit 4aa74cb

Please sign in to comment.