Skip to content

Commit

Permalink
move the verbose flag to be next to the quiet flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Carrotman42 committed Jun 16, 2017
1 parent 9f7a3c4 commit 8bc0720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/cloud_sql_proxy/cloud_sql_proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ import (

var (
version = flag.Bool("version", false, "Print the version of the proxy and exit")
verbose = flag.Bool("verbose", true, "If false, verbose output such as information about when connections are created/closed without error are suppressed")
quiet = flag.Bool("quiet", false, "Disable log messages")

checkRegion = flag.Bool("check_region", false, `If specified, the 'region' portion of the connection string is required for
UNIX socket-based connections.`)
verbose = flag.Bool("verbose", true, "If false, verbose output such as information about when connections are created/closed without error are suppressed")

// Settings for how to choose which instance to connect to.
dir = flag.String("dir", "", "Directory to use for placing UNIX sockets representing database instances")
Expand Down

0 comments on commit 8bc0720

Please sign in to comment.