summaryrefslogtreecommitdiffstats
path: root/cmd/helpers.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/helpers.go')
-rw-r--r--cmd/helpers.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/helpers.go b/cmd/helpers.go
index f53f235..133fb0a 100644
--- a/cmd/helpers.go
+++ b/cmd/helpers.go
@@ -8,11 +8,11 @@ import (
)
func newClient() (*client.Client, error) {
- return client.New(config.New())
+ return client.New(config.New().WithDebug(debugOutput))
}
func newUnauthenticatedClient() (*client.Client, error) {
- return client.NewUnauthenticated(config.New())
+ return client.NewUnauthenticated(config.New().WithDebug(debugOutput))
}
func checkError(errorMsg string) error {