From b374fd23e984d24652f0334f7059b27cbb9e09c3 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Wed, 25 Oct 2023 08:29:23 +0530 Subject: [PATCH] Remove redundant log --- pkg/cli.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/cli.go b/pkg/cli.go index d79e413..3d1ce49 100644 --- a/pkg/cli.go +++ b/pkg/cli.go @@ -5,7 +5,6 @@ import ( "github.com/ente-io/cli/internal/api" "github.com/ente-io/cli/pkg/secrets" bolt "go.etcd.io/bbolt" - "log" "os" "path/filepath" ) @@ -26,7 +25,6 @@ func (c *ClICtrl) Init() error { return err } } - log.Printf("Using temp folder %s", tempPath) c.tempFolder = tempPath return c.DB.Update(func(tx *bolt.Tx) error { _, err := tx.CreateBucketIfNotExists([]byte(AccBucket))