From 8bc072073f48ba31edd2e5c3496d1c078a80b4f3 Mon Sep 17 00:00:00 2001 From: Kevin Malachowski Date: Fri, 16 Jun 2017 15:44:27 -0700 Subject: [PATCH] move the verbose flag to be next to the quiet flag --- cmd/cloud_sql_proxy/cloud_sql_proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cloud_sql_proxy/cloud_sql_proxy.go b/cmd/cloud_sql_proxy/cloud_sql_proxy.go index 48fbcf7f6..9ca206aaf 100644 --- a/cmd/cloud_sql_proxy/cloud_sql_proxy.go +++ b/cmd/cloud_sql_proxy/cloud_sql_proxy.go @@ -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")